source: trip-planner-front/node_modules/rxjs/_esm5/internal/operators/auditTime.js

Last change on this file was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 431 bytes
Line 
1/** PURE_IMPORTS_START _scheduler_async,_audit,_observable_timer PURE_IMPORTS_END */
2import { async } from '../scheduler/async';
3import { audit } from './audit';
4import { timer } from '../observable/timer';
5export function auditTime(duration, scheduler) {
6 if (scheduler === void 0) {
7 scheduler = async;
8 }
9 return audit(function () { return timer(duration, scheduler); });
10}
11//# sourceMappingURL=auditTime.js.map
Note: See TracBrowser for help on using the repository browser.