/var/www/greso.tech/server/nsm/node_modules/underscore/cjs
Edit: /var/www/greso.tech/server/nsm/node_modules/underscore/cjs/constant.js (172B)
// Predicate-generating function. Often useful outside of Underscore.
function constant(value) {
return function() {
return value;
};
}
module.exports = constant;