9071c41f1ec09c2f009aa2f672243f3cf90eccd64e4bee9db5c2cf5369ab29afaf4699f57da2811f3e06b4f926c2b3b5325707c04b5644a2f11c7a204ca55e 332 B

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