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

module.exports = constant;