not.js 269 B

1234567891011
  1. "use strict";
  2. function not(pred, thisArg) {
  3. function notPred() {
  4. return !(notPred.pred.apply(notPred.thisArg, arguments));
  5. }
  6. notPred.pred = pred;
  7. notPred.thisArg = thisArg;
  8. return notPred;
  9. }
  10. exports.not = not;
  11. //# sourceMappingURL=not.js.map