/var/www/greso.tech/server/nsm/node_modules/underscore/modules
Edit: /var/www/greso.tech/server/nsm/node_modules/underscore/modules/constant.js (159B)
// Predicate-generating function. Often useful outside of Underscore.
export default function constant(value) {
return function() {
return value;
};
}