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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy