Giant blob of minor changes
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / rxjs / _esm2015 / internal / Scheduler.js
1 export class Scheduler {
2     constructor(SchedulerAction, now = Scheduler.now) {
3         this.SchedulerAction = SchedulerAction;
4         this.now = now;
5     }
6     schedule(work, delay = 0, state) {
7         return new this.SchedulerAction(this, work).schedule(state, delay);
8     }
9 }
10 Scheduler.now = () => Date.now();
11 //# sourceMappingURL=Scheduler.js.map