frontend/.pnpm-store/v3/files/29/90b43aeb9708c64686785f04291c127cb11db4c2a31f0a8f9dd9738c7e28d9b27dbd0249d2859a8ea604a00bfe3ce35072a5d10d37c1136725a9e78918b944

9 lines
243 B
Plaintext

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