auditTime.js 351 B

12345678
  1. import { asyncScheduler } from '../scheduler/async';
  2. import { audit } from './audit';
  3. import { timer } from '../observable/timer';
  4. export function auditTime(duration, scheduler) {
  5. if (scheduler === void 0) { scheduler = asyncScheduler; }
  6. return audit(function () { return timer(duration, scheduler); });
  7. }
  8. //# sourceMappingURL=auditTime.js.map