Actualizacion maquina principal
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / rxjs / src / internal / util / not.ts
1 export function not(pred: Function, thisArg: any): Function {
2   function notPred(): any {
3     return !((<any> notPred).pred.apply((<any> notPred).thisArg, arguments));
4   }
5   (<any> notPred).pred = pred;
6   (<any> notPred).thisArg = thisArg;
7   return notPred;
8 }