blob: e5e695229770660fb9a60ec2be0f2791958738d3 [file] [log] [blame]
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;
}