some deletions
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / rxjs / src / internal / util / not.ts
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/rxjs/src/internal/util/not.ts b/.config/coc/extensions/node_modules/coc-prettier/node_modules/rxjs/src/internal/util/not.ts
deleted file mode 100644 (file)
index e5e6952..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-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;
-}
\ No newline at end of file