UNPKG

underscore-es

Version:

javaScript's functional programming helper library for ES6 and beyond.

9 lines (8 loc) 228 B
// `_constant` : an utility's function // ------------------------------------ // Predicate-generating functions. Often useful outside of Underscore. export default function (value) { return function () { return value; }; }