Current section

Files

Jump to
udia assets node_modules mout function constant.js
Raw

assets/node_modules/mout/function/constant.js

/**
* Returns a new function that will return the value
*/
function constant(value){
return function() {
return value;
};
}
module.exports = constant;