auditTime.js 288 B

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