frontend/.pnpm-store/v3/files/1d/b7fb1ad0948447942e7c1127910f401fa0839b5cc0901546eb432b659d3443426213216165850c72ec6a21e6397cb340888cab3ddcb0303a197f7afc55538a

8 lines
259 B
Plaintext

export function not(pred: Function, thisArg: any): Function {
function notPred(): any {
return !((<any> notPred).pred.apply((<any> notPred).thisArg, arguments));
}
(<any> notPred).pred = pred;
(<any> notPred).thisArg = thisArg;
return notPred;
}