UNPKG

210 BJavaScriptView Raw
1
2
3 /**
4 * Returns a new function that will return the value
5 */
6 function constant(value){
7 return function() {
8 return value;
9 };
10 }
11
12 module.exports = constant;
13
14