aboutsummaryrefslogtreecommitdiff
path: root/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler')
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/Action.js10
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/Action.js.map1
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AnimationFrameAction.js26
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AnimationFrameAction.js.map1
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AnimationFrameScheduler.js25
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AnimationFrameScheduler.js.map1
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsapAction.js27
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsapAction.js.map1
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsapScheduler.js25
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsapScheduler.js.map1
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsyncAction.js80
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsyncAction.js.map1
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsyncScheduler.js46
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsyncScheduler.js.map1
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/QueueAction.js29
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/QueueAction.js.map1
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/QueueScheduler.js4
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/QueueScheduler.js.map1
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/VirtualTimeScheduler.js82
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/VirtualTimeScheduler.js.map1
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/animationFrame.js5
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/animationFrame.js.map1
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/asap.js5
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/asap.js.map1
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/async.js5
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/async.js.map1
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/queue.js5
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/queue.js.map1
28 files changed, 0 insertions, 388 deletions
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/Action.js b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/Action.js
deleted file mode 100644
index 4ded474f..00000000
--- a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/Action.js
+++ /dev/null
@@ -1,10 +0,0 @@
-import { Subscription } from '../Subscription';
-export class Action extends Subscription {
- constructor(scheduler, work) {
- super();
- }
- schedule(state, delay = 0) {
- return this;
- }
-}
-//# sourceMappingURL=Action.js.map \ No newline at end of file
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/Action.js.map b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/Action.js.map
deleted file mode 100644
index c5428520..00000000
--- a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/Action.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"file":"Action.js","sources":["../../../src/internal/scheduler/Action.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAiB/C,MAAM,OAAO,MAAU,SAAQ,YAAY;IACzC,YAAY,SAAoB,EAAE,IAAmD;QACnF,KAAK,EAAE,CAAC;IACV,CAAC;IAWM,QAAQ,CAAC,KAAS,EAAE,QAAgB,CAAC;QAC1C,OAAO,IAAI,CAAC;IACd,CAAC;CACF"}
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AnimationFrameAction.js b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AnimationFrameAction.js
deleted file mode 100644
index e0b7ffa4..00000000
--- a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AnimationFrameAction.js
+++ /dev/null
@@ -1,26 +0,0 @@
-import { AsyncAction } from './AsyncAction';
-export class AnimationFrameAction extends AsyncAction {
- constructor(scheduler, work) {
- super(scheduler, work);
- this.scheduler = scheduler;
- this.work = work;
- }
- requestAsyncId(scheduler, id, delay = 0) {
- if (delay !== null && delay > 0) {
- return super.requestAsyncId(scheduler, id, delay);
- }
- scheduler.actions.push(this);
- return scheduler.scheduled || (scheduler.scheduled = requestAnimationFrame(() => scheduler.flush(null)));
- }
- recycleAsyncId(scheduler, id, delay = 0) {
- if ((delay !== null && delay > 0) || (delay === null && this.delay > 0)) {
- return super.recycleAsyncId(scheduler, id, delay);
- }
- if (scheduler.actions.length === 0) {
- cancelAnimationFrame(id);
- scheduler.scheduled = undefined;
- }
- return undefined;
- }
-}
-//# sourceMappingURL=AnimationFrameAction.js.map \ No newline at end of file
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AnimationFrameAction.js.map b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AnimationFrameAction.js.map
deleted file mode 100644
index c9dabf4a..00000000
--- a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AnimationFrameAction.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"file":"AnimationFrameAction.js","sources":["../../../src/internal/scheduler/AnimationFrameAction.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAS5C,MAAM,OAAO,oBAAwB,SAAQ,WAAc;IAEzD,YAAsB,SAAkC,EAClC,IAAmD;QACvE,KAAK,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;QAFH,cAAS,GAAT,SAAS,CAAyB;QAClC,SAAI,GAAJ,IAAI,CAA+C;IAEzE,CAAC;IAES,cAAc,CAAC,SAAkC,EAAE,EAAQ,EAAE,QAAgB,CAAC;QAEtF,IAAI,KAAK,KAAK,IAAI,IAAI,KAAK,GAAG,CAAC,EAAE;YAC/B,OAAO,KAAK,CAAC,cAAc,CAAC,SAAS,EAAE,EAAE,EAAE,KAAK,CAAC,CAAC;SACnD;QAED,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAI7B,OAAO,SAAS,CAAC,SAAS,IAAI,CAAC,SAAS,CAAC,SAAS,GAAG,qBAAqB,CACxE,GAAG,EAAE,CAAC,SAAS,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IAClC,CAAC;IACS,cAAc,CAAC,SAAkC,EAAE,EAAQ,EAAE,QAAgB,CAAC;QAItF,IAAI,CAAC,KAAK,KAAK,IAAI,IAAI,KAAK,GAAG,CAAC,CAAC,IAAI,CAAC,KAAK,KAAK,IAAI,IAAI,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC,EAAE;YACvE,OAAO,KAAK,CAAC,cAAc,CAAC,SAAS,EAAE,EAAE,EAAE,KAAK,CAAC,CAAC;SACnD;QAID,IAAI,SAAS,CAAC,OAAO,CAAC,MAAM,KAAK,CAAC,EAAE;YAClC,oBAAoB,CAAC,EAAE,CAAC,CAAC;YACzB,SAAS,CAAC,SAAS,GAAG,SAAS,CAAC;SACjC;QAED,OAAO,SAAS,CAAC;IACnB,CAAC;CACF"}
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AnimationFrameScheduler.js b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AnimationFrameScheduler.js
deleted file mode 100644
index cb658cb4..00000000
--- a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AnimationFrameScheduler.js
+++ /dev/null
@@ -1,25 +0,0 @@
-import { AsyncScheduler } from './AsyncScheduler';
-export class AnimationFrameScheduler 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=AnimationFrameScheduler.js.map \ No newline at end of file
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AnimationFrameScheduler.js.map b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AnimationFrameScheduler.js.map
deleted file mode 100644
index 88d43ada..00000000
--- a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AnimationFrameScheduler.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"file":"AnimationFrameScheduler.js","sources":["../../../src/internal/scheduler/AnimationFrameScheduler.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAElD,MAAM,OAAO,uBAAwB,SAAQ,cAAc;IAClD,KAAK,CAAC,MAAyB;QAEpC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;QACnB,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC;QAE3B,MAAM,EAAC,OAAO,EAAC,GAAG,IAAI,CAAC;QACvB,IAAI,KAAU,CAAC;QACf,IAAI,KAAK,GAAW,CAAC,CAAC,CAAC;QACvB,IAAI,KAAK,GAAW,OAAO,CAAC,MAAM,CAAC;QACnC,MAAM,GAAG,MAAM,IAAI,OAAO,CAAC,KAAK,EAAE,CAAC;QAEnC,GAAG;YACD,IAAI,KAAK,GAAG,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,KAAK,EAAE,MAAM,CAAC,KAAK,CAAC,EAAE;gBACtD,MAAM;aACP;SACF,QAAQ,EAAE,KAAK,GAAG,KAAK,IAAI,CAAC,MAAM,GAAG,OAAO,CAAC,KAAK,EAAE,CAAC,EAAE;QAExD,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;QAEpB,IAAI,KAAK,EAAE;YACT,OAAO,EAAE,KAAK,GAAG,KAAK,IAAI,CAAC,MAAM,GAAG,OAAO,CAAC,KAAK,EAAE,CAAC,EAAE;gBACpD,MAAM,CAAC,WAAW,EAAE,CAAC;aACtB;YACD,MAAM,KAAK,CAAC;SACb;IACH,CAAC;CACF"}
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsapAction.js b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsapAction.js
deleted file mode 100644
index 1d6a6776..00000000
--- a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsapAction.js
+++ /dev/null
@@ -1,27 +0,0 @@
-import { Immediate } from '../util/Immediate';
-import { AsyncAction } from './AsyncAction';
-export class AsapAction extends AsyncAction {
- constructor(scheduler, work) {
- super(scheduler, work);
- this.scheduler = scheduler;
- this.work = work;
- }
- requestAsyncId(scheduler, id, delay = 0) {
- if (delay !== null && delay > 0) {
- return super.requestAsyncId(scheduler, id, delay);
- }
- scheduler.actions.push(this);
- return scheduler.scheduled || (scheduler.scheduled = Immediate.setImmediate(scheduler.flush.bind(scheduler, null)));
- }
- recycleAsyncId(scheduler, id, delay = 0) {
- if ((delay !== null && delay > 0) || (delay === null && this.delay > 0)) {
- return super.recycleAsyncId(scheduler, id, delay);
- }
- if (scheduler.actions.length === 0) {
- Immediate.clearImmediate(id);
- scheduler.scheduled = undefined;
- }
- return undefined;
- }
-}
-//# sourceMappingURL=AsapAction.js.map \ No newline at end of file
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsapAction.js.map b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsapAction.js.map
deleted file mode 100644
index a74d5d7a..00000000
--- a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsapAction.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"file":"AsapAction.js","sources":["../../../src/internal/scheduler/AsapAction.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAC9C,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAQ5C,MAAM,OAAO,UAAc,SAAQ,WAAc;IAE/C,YAAsB,SAAwB,EACxB,IAAmD;QACvE,KAAK,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;QAFH,cAAS,GAAT,SAAS,CAAe;QACxB,SAAI,GAAJ,IAAI,CAA+C;IAEzE,CAAC;IAES,cAAc,CAAC,SAAwB,EAAE,EAAQ,EAAE,QAAgB,CAAC;QAE5E,IAAI,KAAK,KAAK,IAAI,IAAI,KAAK,GAAG,CAAC,EAAE;YAC/B,OAAO,KAAK,CAAC,cAAc,CAAC,SAAS,EAAE,EAAE,EAAE,KAAK,CAAC,CAAC;SACnD;QAED,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAI7B,OAAO,SAAS,CAAC,SAAS,IAAI,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,CAAC,YAAY,CACzE,SAAS,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,EAAE,IAAI,CAAC,CACtC,CAAC,CAAC;IACL,CAAC;IACS,cAAc,CAAC,SAAwB,EAAE,EAAQ,EAAE,QAAgB,CAAC;QAI5E,IAAI,CAAC,KAAK,KAAK,IAAI,IAAI,KAAK,GAAG,CAAC,CAAC,IAAI,CAAC,KAAK,KAAK,IAAI,IAAI,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC,EAAE;YACvE,OAAO,KAAK,CAAC,cAAc,CAAC,SAAS,EAAE,EAAE,EAAE,KAAK,CAAC,CAAC;SACnD;QAID,IAAI,SAAS,CAAC,OAAO,CAAC,MAAM,KAAK,CAAC,EAAE;YAClC,SAAS,CAAC,cAAc,CAAC,EAAE,CAAC,CAAC;YAC7B,SAAS,CAAC,SAAS,GAAG,SAAS,CAAC;SACjC;QAED,OAAO,SAAS,CAAC;IACnB,CAAC;CACF"}
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsapScheduler.js b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsapScheduler.js
deleted file mode 100644
index d4f637de..00000000
--- a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsapScheduler.js
+++ /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
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsapScheduler.js.map b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsapScheduler.js.map
deleted file mode 100644
index c8727d84..00000000
--- a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsapScheduler.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"file":"AsapScheduler.js","sources":["../../../src/internal/scheduler/AsapScheduler.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAElD,MAAM,OAAO,aAAc,SAAQ,cAAc;IACxC,KAAK,CAAC,MAAyB;QAEpC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;QACnB,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC;QAE3B,MAAM,EAAC,OAAO,EAAC,GAAG,IAAI,CAAC;QACvB,IAAI,KAAU,CAAC;QACf,IAAI,KAAK,GAAW,CAAC,CAAC,CAAC;QACvB,IAAI,KAAK,GAAW,OAAO,CAAC,MAAM,CAAC;QACnC,MAAM,GAAG,MAAM,IAAI,OAAO,CAAC,KAAK,EAAE,CAAC;QAEnC,GAAG;YACD,IAAI,KAAK,GAAG,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,KAAK,EAAE,MAAM,CAAC,KAAK,CAAC,EAAE;gBACtD,MAAM;aACP;SACF,QAAQ,EAAE,KAAK,GAAG,KAAK,IAAI,CAAC,MAAM,GAAG,OAAO,CAAC,KAAK,EAAE,CAAC,EAAE;QAExD,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;QAEpB,IAAI,KAAK,EAAE;YACT,OAAO,EAAE,KAAK,GAAG,KAAK,IAAI,CAAC,MAAM,GAAG,OAAO,CAAC,KAAK,EAAE,CAAC,EAAE;gBACpD,MAAM,CAAC,WAAW,EAAE,CAAC;aACtB;YACD,MAAM,KAAK,CAAC;SACb;IACH,CAAC;CACF"}
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsyncAction.js b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsyncAction.js
deleted file mode 100644
index 66c29364..00000000
--- a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsyncAction.js
+++ /dev/null
@@ -1,80 +0,0 @@
-import { Action } from './Action';
-export class AsyncAction extends Action {
- constructor(scheduler, work) {
- super(scheduler, work);
- this.scheduler = scheduler;
- this.work = work;
- this.pending = false;
- }
- schedule(state, delay = 0) {
- if (this.closed) {
- return this;
- }
- this.state = state;
- const id = this.id;
- const scheduler = this.scheduler;
- if (id != null) {
- this.id = this.recycleAsyncId(scheduler, id, delay);
- }
- this.pending = true;
- this.delay = delay;
- this.id = this.id || this.requestAsyncId(scheduler, this.id, delay);
- return this;
- }
- requestAsyncId(scheduler, id, delay = 0) {
- return setInterval(scheduler.flush.bind(scheduler, this), delay);
- }
- recycleAsyncId(scheduler, id, delay = 0) {
- if (delay !== null && this.delay === delay && this.pending === false) {
- return id;
- }
- clearInterval(id);
- return undefined;
- }
- execute(state, delay) {
- if (this.closed) {
- return new Error('executing a cancelled action');
- }
- this.pending = false;
- const error = this._execute(state, delay);
- if (error) {
- return error;
- }
- else if (this.pending === false && this.id != null) {
- this.id = this.recycleAsyncId(this.scheduler, this.id, null);
- }
- }
- _execute(state, delay) {
- let errored = false;
- let errorValue = undefined;
- try {
- this.work(state);
- }
- catch (e) {
- errored = true;
- errorValue = !!e && e || new Error(e);
- }
- if (errored) {
- this.unsubscribe();
- return errorValue;
- }
- }
- _unsubscribe() {
- const id = this.id;
- const scheduler = this.scheduler;
- const actions = scheduler.actions;
- const index = actions.indexOf(this);
- this.work = null;
- this.state = null;
- this.pending = false;
- this.scheduler = null;
- if (index !== -1) {
- actions.splice(index, 1);
- }
- if (id != null) {
- this.id = this.recycleAsyncId(scheduler, id, null);
- }
- this.delay = null;
- }
-}
-//# sourceMappingURL=AsyncAction.js.map \ No newline at end of file
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsyncAction.js.map b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsyncAction.js.map
deleted file mode 100644
index 081998ee..00000000
--- a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsyncAction.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"file":"AsyncAction.js","sources":["../../../src/internal/scheduler/AsyncAction.ts"],"names":[],"mappings":"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"}
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsyncScheduler.js b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsyncScheduler.js
deleted file mode 100644
index 828192fb..00000000
--- a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsyncScheduler.js
+++ /dev/null
@@ -1,46 +0,0 @@
-import { Scheduler } from '../Scheduler';
-export class AsyncScheduler extends Scheduler {
- constructor(SchedulerAction, now = Scheduler.now) {
- super(SchedulerAction, () => {
- if (AsyncScheduler.delegate && AsyncScheduler.delegate !== this) {
- return AsyncScheduler.delegate.now();
- }
- else {
- return now();
- }
- });
- this.actions = [];
- this.active = false;
- this.scheduled = undefined;
- }
- schedule(work, delay = 0, state) {
- if (AsyncScheduler.delegate && AsyncScheduler.delegate !== this) {
- return AsyncScheduler.delegate.schedule(work, delay, state);
- }
- else {
- return super.schedule(work, delay, state);
- }
- }
- flush(action) {
- const { actions } = this;
- if (this.active) {
- actions.push(action);
- return;
- }
- let error;
- this.active = true;
- do {
- if (error = action.execute(action.state, action.delay)) {
- break;
- }
- } while (action = actions.shift());
- this.active = false;
- if (error) {
- while (action = actions.shift()) {
- action.unsubscribe();
- }
- throw error;
- }
- }
-}
-//# sourceMappingURL=AsyncScheduler.js.map \ No newline at end of file
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsyncScheduler.js.map b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsyncScheduler.js.map
deleted file mode 100644
index 2fd6cd54..00000000
--- a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsyncScheduler.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"file":"AsyncScheduler.js","sources":["../../../src/internal/scheduler/AsyncScheduler.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAMzC,MAAM,OAAO,cAAe,SAAQ,SAAS;IAmB3C,YAAY,eAA8B,EAC9B,MAAoB,SAAS,CAAC,GAAG;QAC3C,KAAK,CAAC,eAAe,EAAE,GAAG,EAAE;YAC1B,IAAI,cAAc,CAAC,QAAQ,IAAI,cAAc,CAAC,QAAQ,KAAK,IAAI,EAAE;gBAC/D,OAAO,cAAc,CAAC,QAAQ,CAAC,GAAG,EAAE,CAAC;aACtC;iBAAM;gBACL,OAAO,GAAG,EAAE,CAAC;aACd;QACH,CAAC,CAAC,CAAC;QAzBE,YAAO,GAA4B,EAAE,CAAC;QAOtC,WAAM,GAAY,KAAK,CAAC;QAQxB,cAAS,GAAQ,SAAS,CAAC;IAWlC,CAAC;IAEM,QAAQ,CAAI,IAAmD,EAAE,QAAgB,CAAC,EAAE,KAAS;QAClG,IAAI,cAAc,CAAC,QAAQ,IAAI,cAAc,CAAC,QAAQ,KAAK,IAAI,EAAE;YAC/D,OAAO,cAAc,CAAC,QAAQ,CAAC,QAAQ,CAAC,IAAI,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;SAC7D;aAAM;YACL,OAAO,KAAK,CAAC,QAAQ,CAAC,IAAI,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;SAC3C;IACH,CAAC;IAEM,KAAK,CAAC,MAAwB;QAEnC,MAAM,EAAC,OAAO,EAAC,GAAG,IAAI,CAAC;QAEvB,IAAI,IAAI,CAAC,MAAM,EAAE;YACf,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;YACrB,OAAO;SACR;QAED,IAAI,KAAU,CAAC;QACf,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;QAEnB,GAAG;YACD,IAAI,KAAK,GAAG,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,KAAK,EAAE,MAAM,CAAC,KAAK,CAAC,EAAE;gBACtD,MAAM;aACP;SACF,QAAQ,MAAM,GAAG,OAAO,CAAC,KAAK,EAAE,EAAE;QAEnC,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;QAEpB,IAAI,KAAK,EAAE;YACT,OAAO,MAAM,GAAG,OAAO,CAAC,KAAK,EAAE,EAAE;gBAC/B,MAAM,CAAC,WAAW,EAAE,CAAC;aACtB;YACD,MAAM,KAAK,CAAC;SACb;IACH,CAAC;CACF"}
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/QueueAction.js b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/QueueAction.js
deleted file mode 100644
index 3b3177a3..00000000
--- a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/QueueAction.js
+++ /dev/null
@@ -1,29 +0,0 @@
-import { AsyncAction } from './AsyncAction';
-export class QueueAction extends AsyncAction {
- constructor(scheduler, work) {
- super(scheduler, work);
- this.scheduler = scheduler;
- this.work = work;
- }
- schedule(state, delay = 0) {
- if (delay > 0) {
- return super.schedule(state, delay);
- }
- this.delay = delay;
- this.state = state;
- this.scheduler.flush(this);
- return this;
- }
- execute(state, delay) {
- return (delay > 0 || this.closed) ?
- super.execute(state, delay) :
- this._execute(state, delay);
- }
- requestAsyncId(scheduler, id, delay = 0) {
- if ((delay !== null && delay > 0) || (delay === null && this.delay > 0)) {
- return super.requestAsyncId(scheduler, id, delay);
- }
- return scheduler.flush(this);
- }
-}
-//# sourceMappingURL=QueueAction.js.map \ No newline at end of file
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/QueueAction.js.map b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/QueueAction.js.map
deleted file mode 100644
index af07a1e9..00000000
--- a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/QueueAction.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"file":"QueueAction.js","sources":["../../../src/internal/scheduler/QueueAction.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAU5C,MAAM,OAAO,WAAe,SAAQ,WAAc;IAEhD,YAAsB,SAAyB,EACzB,IAAmD;QACvE,KAAK,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;QAFH,cAAS,GAAT,SAAS,CAAgB;QACzB,SAAI,GAAJ,IAAI,CAA+C;IAEzE,CAAC;IAEM,QAAQ,CAAC,KAAS,EAAE,QAAgB,CAAC;QAC1C,IAAI,KAAK,GAAG,CAAC,EAAE;YACb,OAAO,KAAK,CAAC,QAAQ,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC;SACrC;QACD,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;QACnB,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;QACnB,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;QAC3B,OAAO,IAAI,CAAC;IACd,CAAC;IAEM,OAAO,CAAC,KAAQ,EAAE,KAAa;QACpC,OAAO,CAAC,KAAK,GAAG,CAAC,IAAI,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC;YACjC,KAAK,CAAC,OAAO,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC,CAAC;YAC7B,IAAI,CAAC,QAAQ,CAAC,KAAK,EAAE,KAAK,CAAC,CAAE;IACjC,CAAC;IAES,cAAc,CAAC,SAAyB,EAAE,EAAQ,EAAE,QAAgB,CAAC;QAI7E,IAAI,CAAC,KAAK,KAAK,IAAI,IAAI,KAAK,GAAG,CAAC,CAAC,IAAI,CAAC,KAAK,KAAK,IAAI,IAAI,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC,EAAE;YACvE,OAAO,KAAK,CAAC,cAAc,CAAC,SAAS,EAAE,EAAE,EAAE,KAAK,CAAC,CAAC;SACnD;QAED,OAAO,SAAS,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;IAC/B,CAAC;CACF"}
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/QueueScheduler.js b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/QueueScheduler.js
deleted file mode 100644
index cc1fb4d5..00000000
--- a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/QueueScheduler.js
+++ /dev/null
@@ -1,4 +0,0 @@
-import { AsyncScheduler } from './AsyncScheduler';
-export class QueueScheduler extends AsyncScheduler {
-}
-//# sourceMappingURL=QueueScheduler.js.map \ No newline at end of file
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/QueueScheduler.js.map b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/QueueScheduler.js.map
deleted file mode 100644
index c32c0b1f..00000000
--- a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/QueueScheduler.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"file":"QueueScheduler.js","sources":["../../../src/internal/scheduler/QueueScheduler.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAElD,MAAM,OAAO,cAAe,SAAQ,cAAc;CACjD"}
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/VirtualTimeScheduler.js b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/VirtualTimeScheduler.js
deleted file mode 100644
index ebce6dbd..00000000
--- a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/VirtualTimeScheduler.js
+++ /dev/null
@@ -1,82 +0,0 @@
-import { AsyncAction } from './AsyncAction';
-import { AsyncScheduler } from './AsyncScheduler';
-export class VirtualTimeScheduler extends AsyncScheduler {
- constructor(SchedulerAction = VirtualAction, maxFrames = Number.POSITIVE_INFINITY) {
- super(SchedulerAction, () => this.frame);
- this.maxFrames = maxFrames;
- this.frame = 0;
- this.index = -1;
- }
- flush() {
- const { actions, maxFrames } = this;
- let error, action;
- while ((action = actions[0]) && action.delay <= maxFrames) {
- actions.shift();
- this.frame = action.delay;
- if (error = action.execute(action.state, action.delay)) {
- break;
- }
- }
- if (error) {
- while (action = actions.shift()) {
- action.unsubscribe();
- }
- throw error;
- }
- }
-}
-VirtualTimeScheduler.frameTimeFactor = 10;
-export class VirtualAction extends AsyncAction {
- constructor(scheduler, work, index = scheduler.index += 1) {
- super(scheduler, work);
- this.scheduler = scheduler;
- this.work = work;
- this.index = index;
- this.active = true;
- this.index = scheduler.index = index;
- }
- schedule(state, delay = 0) {
- if (!this.id) {
- return super.schedule(state, delay);
- }
- this.active = false;
- const action = new VirtualAction(this.scheduler, this.work);
- this.add(action);
- return action.schedule(state, delay);
- }
- requestAsyncId(scheduler, id, delay = 0) {
- this.delay = scheduler.frame + delay;
- const { actions } = scheduler;
- actions.push(this);
- actions.sort(VirtualAction.sortActions);
- return true;
- }
- recycleAsyncId(scheduler, id, delay = 0) {
- return undefined;
- }
- _execute(state, delay) {
- if (this.active === true) {
- return super._execute(state, delay);
- }
- }
- static sortActions(a, b) {
- if (a.delay === b.delay) {
- if (a.index === b.index) {
- return 0;
- }
- else if (a.index > b.index) {
- return 1;
- }
- else {
- return -1;
- }
- }
- else if (a.delay > b.delay) {
- return 1;
- }
- else {
- return -1;
- }
- }
-}
-//# sourceMappingURL=VirtualTimeScheduler.js.map \ No newline at end of file
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/VirtualTimeScheduler.js.map b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/VirtualTimeScheduler.js.map
deleted file mode 100644
index 9b56e6ec..00000000
--- a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/VirtualTimeScheduler.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"file":"VirtualTimeScheduler.js","sources":["../../../src/internal/scheduler/VirtualTimeScheduler.ts"],"names":[],"mappings":"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"}
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/animationFrame.js b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/animationFrame.js
deleted file mode 100644
index 6575d95b..00000000
--- a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/animationFrame.js
+++ /dev/null
@@ -1,5 +0,0 @@
-import { AnimationFrameAction } from './AnimationFrameAction';
-import { AnimationFrameScheduler } from './AnimationFrameScheduler';
-export const animationFrameScheduler = new AnimationFrameScheduler(AnimationFrameAction);
-export const animationFrame = animationFrameScheduler;
-//# sourceMappingURL=animationFrame.js.map \ No newline at end of file
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/animationFrame.js.map b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/animationFrame.js.map
deleted file mode 100644
index f505e818..00000000
--- a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/animationFrame.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"file":"animationFrame.js","sources":["../../../src/internal/scheduler/animationFrame.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAC;AAiCpE,MAAM,CAAC,MAAM,uBAAuB,GAAG,IAAI,uBAAuB,CAAC,oBAAoB,CAAC,CAAC;AAKzF,MAAM,CAAC,MAAM,cAAc,GAAG,uBAAuB,CAAC"}
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/asap.js b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/asap.js
deleted file mode 100644
index 29ae3a84..00000000
--- a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/asap.js
+++ /dev/null
@@ -1,5 +0,0 @@
-import { AsapAction } from './AsapAction';
-import { AsapScheduler } from './AsapScheduler';
-export const asapScheduler = new AsapScheduler(AsapAction);
-export const asap = asapScheduler;
-//# sourceMappingURL=asap.js.map \ No newline at end of file
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/asap.js.map b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/asap.js.map
deleted file mode 100644
index 27cd494b..00000000
--- a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/asap.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"file":"asap.js","sources":["../../../src/internal/scheduler/asap.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAoChD,MAAM,CAAC,MAAM,aAAa,GAAG,IAAI,aAAa,CAAC,UAAU,CAAC,CAAC;AAK3D,MAAM,CAAC,MAAM,IAAI,GAAG,aAAa,CAAC"}
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/async.js b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/async.js
deleted file mode 100644
index 8d0283e1..00000000
--- a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/async.js
+++ /dev/null
@@ -1,5 +0,0 @@
-import { AsyncAction } from './AsyncAction';
-import { AsyncScheduler } from './AsyncScheduler';
-export const asyncScheduler = new AsyncScheduler(AsyncAction);
-export const async = asyncScheduler;
-//# sourceMappingURL=async.js.map \ No newline at end of file
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/async.js.map b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/async.js.map
deleted file mode 100644
index 6aadfea7..00000000
--- a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/async.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"file":"async.js","sources":["../../../src/internal/scheduler/async.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAgDlD,MAAM,CAAC,MAAM,cAAc,GAAG,IAAI,cAAc,CAAC,WAAW,CAAC,CAAC;AAK9D,MAAM,CAAC,MAAM,KAAK,GAAG,cAAc,CAAC"}
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/queue.js b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/queue.js
deleted file mode 100644
index cb4f218d..00000000
--- a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/queue.js
+++ /dev/null
@@ -1,5 +0,0 @@
-import { QueueAction } from './QueueAction';
-import { QueueScheduler } from './QueueScheduler';
-export const queueScheduler = new QueueScheduler(QueueAction);
-export const queue = queueScheduler;
-//# sourceMappingURL=queue.js.map \ No newline at end of file
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/queue.js.map b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/queue.js.map
deleted file mode 100644
index 3e279bb9..00000000
--- a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/queue.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"file":"queue.js","sources":["../../../src/internal/scheduler/queue.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAgElD,MAAM,CAAC,MAAM,cAAc,GAAG,IAAI,cAAc,CAAC,WAAW,CAAC,CAAC;AAK9D,MAAM,CAAC,MAAM,KAAK,GAAG,cAAc,CAAC"}