Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

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