not.js 134 B

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