You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1 lines
508 B
1 lines
508 B
{"ast":null,"code":"export let Scheduler = /*#__PURE__*/(() => {\n class Scheduler {\n constructor(SchedulerAction, now = Scheduler.now) {\n this.SchedulerAction = SchedulerAction;\n this.now = now;\n }\n\n schedule(work, delay = 0, state) {\n return new this.SchedulerAction(this, work).schedule(state, delay);\n }\n\n }\n\n Scheduler.now = () => Date.now(); //# sourceMappingURL=Scheduler.js.map\n\n\n return Scheduler;\n})();","map":null,"metadata":{},"sourceType":"module"}
|