📄 constant.js
/home/palash/git/site/node_modules/underscore/modules/constant.js
Language: js • Lines: 6
// Predicate-generating function. Often useful outside of Underscore.
export default function constant(value) {
  return function() {
    return value;
  };
}