Codebase list node-d3-shape / upstream/1.2.0 src / constant.js
upstream/1.2.0

Tree @upstream/1.2.0 (Download .tar.gz)

constant.js @upstream/1.2.0raw · history · blame

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