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

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

constant.js @upstream/latestraw · history · blame

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