UNPKG

mout

Version:

Modular Utilities

11 lines (9 loc) 169 B
/** * Returns a new function that will return the value */ function constant(value) { return function() { return value; }; } export default constant;