90b43aeb9708c64686785f04291c127cb11db4c2a31f0a8f9dd9738c7e28d9b27dbd0249d2859a8ea604a00bfe3ce35072a5d10d37c1136725a9e78918b944 243 B

123456789
  1. export function not(pred, thisArg) {
  2. function notPred() {
  3. return !(notPred.pred.apply(notPred.thisArg, arguments));
  4. }
  5. notPred.pred = pred;
  6. notPred.thisArg = thisArg;
  7. return notPred;
  8. }
  9. //# sourceMappingURL=not.js.map