not.js 263 B

12345678
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.not = void 0;
  4. function not(pred, thisArg) {
  5. return function (value, index) { return !pred.call(thisArg, value, index); };
  6. }
  7. exports.not = not;
  8. //# sourceMappingURL=not.js.map