Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

11 wiersze
269 B

  1. "use strict";
  2. 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. exports.not = not;
  11. //# sourceMappingURL=not.js.map