constant.js 210 B

1234567891011121314
  1. /**
  2. * Returns a new function that will return the value
  3. */
  4. function constant(value){
  5. return function() {
  6. return value;
  7. };
  8. }
  9. module.exports = constant;