aboutsummaryrefslogtreecommitdiff
path: root/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/Scheduler.js
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/Scheduler.js')
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/Scheduler.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/Scheduler.js b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/Scheduler.js
new file mode 100644
index 00000000..9c0ab999
--- /dev/null
+++ b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/Scheduler.js
@@ -0,0 +1,11 @@
+export class Scheduler {
+ constructor(SchedulerAction, now = Scheduler.now) {
+ this.SchedulerAction = SchedulerAction;
+ this.now = now;
+ }
+ schedule(work, delay = 0, state) {
+ return new this.SchedulerAction(this, work).schedule(state, delay);
+ }
+}
+Scheduler.now = () => Date.now();
+//# sourceMappingURL=Scheduler.js.map \ No newline at end of file