Codebase list node-d3-shape / 26306f9 src / constant.js
26306f9

Tree @26306f9 (Download .tar.gz)

constant.js @26306f9raw · history · blame

1
2
3
4
5
export default function(x) {
  return function constant() {
    return x;
  };
}