Sha256: 4d90e7d9a41dc1896221d0bc53f0a7fb840a313df3077e4b0e7e9ea082bb0147
Contents?: true
Size: 259 Bytes
Versions: 53
Compression:
Stored size: 259 Bytes
Contents
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; }
Version data entries
53 entries across 51 versions & 5 rubygems