constant.js 159 Bytes Raw Blame History Permalink 1 2 3 4 5 6 // Predicate-generating function. Often useful outside of Underscore. export default function constant(value) { return function() { return value; }; }