All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.cjs.constant.js Maven / Gradle / Ivy

The newest version!
// Predicate-generating function. Often useful outside of Underscore.
function constant(value) {
  return function() {
    return value;
  };
}

module.exports = constant;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy