some deletions
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / rxjs / _esm2015 / internal / scheduler / AsapScheduler.js
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/rxjs/_esm2015/internal/scheduler/AsapScheduler.js b/.config/coc/extensions/node_modules/coc-prettier/node_modules/rxjs/_esm2015/internal/scheduler/AsapScheduler.js
deleted file mode 100644 (file)
index d4f637d..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-import { AsyncScheduler } from './AsyncScheduler';
-export class AsapScheduler extends AsyncScheduler {
-    flush(action) {
-        this.active = true;
-        this.scheduled = undefined;
-        const { actions } = this;
-        let error;
-        let index = -1;
-        let count = actions.length;
-        action = action || actions.shift();
-        do {
-            if (error = action.execute(action.state, action.delay)) {
-                break;
-            }
-        } while (++index < count && (action = actions.shift()));
-        this.active = false;
-        if (error) {
-            while (++index < count && (action = actions.shift())) {
-                action.unsubscribe();
-            }
-            throw error;
-        }
-    }
-}
-//# sourceMappingURL=AsapScheduler.js.map
\ No newline at end of file