📄 constant.js
/home/palash/git/site/node_modules/underscore/amd/constant.js
Language: js • Lines: 12
define(function () {

  // Predicate-generating function. Often useful outside of Underscore.
  function constant(value) {
    return function() {
      return value;
    };
  }

  return constant;

});