80084cf3c16518d11cba770e314094d1e5261a7c7a1505027fd91f30c568d37b1e50f788c6f5443b1584aa42df0aae45fdf73b7681ed0cba5d08021c8d0bd6 288 B

12345678910
  1. /** PURE_IMPORTS_START PURE_IMPORTS_END */
  2. export 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. //# sourceMappingURL=not.js.map