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

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

The newest version!
define(function () {

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

  return negate;

});




© 2015 - 2024 Weber Informatics LLC | Privacy Policy