frontend/.pnpm-store/v3/files/ed/80084cf3c16518d11cba770e314094d1e5261a7c7a1505027fd91f30c568d37b1e50f788c6f5443b1584aa42df0aae45fdf73b7681ed0cba5d08021c8d0bd6

11 lines
288 B
Plaintext

/** PURE_IMPORTS_START PURE_IMPORTS_END */
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