Codebase list node-d3-shape / b5924c2 src / constant.js
b5924c2

Tree @b5924c2 (Download .tar.gz)

constant.js @b5924c2raw · history · blame

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