Actualizacion maquina principal
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / rxjs / _esm5 / internal / Scheduler.js
1 var Scheduler = /*@__PURE__*/ (function () {
2     function Scheduler(SchedulerAction, now) {
3         if (now === void 0) {
4             now = Scheduler.now;
5         }
6         this.SchedulerAction = SchedulerAction;
7         this.now = now;
8     }
9     Scheduler.prototype.schedule = function (work, delay, state) {
10         if (delay === void 0) {
11             delay = 0;
12         }
13         return new this.SchedulerAction(this, work).schedule(state, delay);
14     };
15     Scheduler.now = function () { return Date.now(); };
16     return Scheduler;
17 }());
18 export { Scheduler };
19 //# sourceMappingURL=Scheduler.js.map