Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

not.js 243B

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