Current section

Files

Jump to
excessibility assets node_modules underscore modules constant.js
Raw

assets/node_modules/underscore/modules/constant.js

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