not.js 152 B

1234
  1. export function not(pred, thisArg) {
  2. return function (value, index) { return !pred.call(thisArg, value, index); };
  3. }
  4. //# sourceMappingURL=not.js.map