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 332B

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