1 line
2.1 KiB
JSON
1 line
2.1 KiB
JSON
![]() |
{"ast":null,"code":"export function executeSchedule(parentSubscription, scheduler, work, delay, repeat) {\n if (delay === void 0) {\n delay = 0;\n }\n if (repeat === void 0) {\n repeat = false;\n }\n var scheduleSubscription = scheduler.schedule(function () {\n work();\n if (repeat) {\n parentSubscription.add(this.schedule(null, delay));\n } else {\n this.unsubscribe();\n }\n }, delay);\n parentSubscription.add(scheduleSubscription);\n if (!repeat) {\n return scheduleSubscription;\n }\n}\n//# sourceMappingURL=executeSchedule.js.map","map":{"version":3,"names":["executeSchedule","parentSubscription","scheduler","work","delay","repeat","scheduleSubscription","schedule","add","unsubscribe"],"sources":["/home/poule/encrypted/stockage-syncable/www/development/html/ng-implementation/implem/node_modules/rxjs/dist/esm5/internal/util/executeSchedule.js"],"sourcesContent":["export function executeSchedule(parentSubscription, scheduler, work, delay, repeat) {\n if (delay === void 0) { delay = 0; }\n if (repeat === void 0) { repeat = false; }\n var scheduleSubscription = scheduler.schedule(function () {\n work();\n if (repeat) {\n parentSubscription.add(this.schedule(null, delay));\n }\n else {\n this.unsubscribe();\n }\n }, delay);\n parentSubscription.add(scheduleSubscription);\n if (!repeat) {\n return scheduleSubscription;\n }\n}\n//# sourceMappingURL=executeSchedule.js.map"],"mappings":"AAAA,OAAO,SAASA,eAAeA,CAACC,kBAAkB,EAAEC,SAAS,EAAEC,IAAI,EAAEC,KAAK,EAAEC,MAAM,EAAE;EAChF,IAAID,KAAK,KAAK,KAAK,CAAC,EAAE;IAAEA,KAAK,GAAG,CAAC;EAAE;EACnC,IAAIC,MAAM,KAAK,KAAK,CAAC,EAAE;IAAEA,MAAM,GAAG,KAAK;EAAE;EACzC,IAAIC,oBAAoB,GAAGJ,SAAS,CAACK,QAAQ,CAAC,YAAY;IACtDJ,IAAI,CAAC,CAAC;IACN,IAAIE,MAAM,EAAE;MACRJ,kBAAkB,CAACO,GAAG,CAAC,IAAI,CAACD,QAAQ,CAAC,IAAI,EAAEH,KAAK,CAAC,CAAC;IACtD,CAAC,MACI;MACD,IAAI,CAACK,WAAW,CAAC,CAAC;IACtB;EACJ,CAAC,EAAEL,KAAK,CAAC;EACTH,kBAAkB,CAACO,GAAG,CAACF,oBAAoB,CAAC;EAC5C,IAAI,CAACD,MAAM,EAAE;IACT,OAAOC,oBAAoB;EAC/B;AACJ;AACA","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|