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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy