Codebase list node-d3-shape / 9a40bcf src / constant.js
9a40bcf

Tree @9a40bcf (Download .tar.gz)

constant.js @9a40bcfraw · history · blame

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