Simon Priet 9e2991e668 init
2021-09-05 22:53:58 +02:00

9 lines
243 B
JavaScript

export function not(pred, thisArg) {
function notPred() {
return !(notPred.pred.apply(notPred.thisArg, arguments));
}
notPred.pred = pred;
notPred.thisArg = thisArg;
return notPred;
}
//# sourceMappingURL=not.js.map