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

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

The newest version!
// Returns a negated version of the passed-in predicate.
function negate(predicate) {
  return function() {
    return !predicate.apply(this, arguments);
  };
}

module.exports = negate;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy