cfe347b685ffa28fb4e2c08bd86bd996ad6ccfd5a6f80822b092dc7759adcc88a75c780567122d93c48b94a33f3bab270e760deabe1a478ef56307ad58fa12 431 B

1234567891011
  1. /** PURE_IMPORTS_START _scheduler_async,_audit,_observable_timer PURE_IMPORTS_END */
  2. import { async } from '../scheduler/async';
  3. import { audit } from './audit';
  4. import { timer } from '../observable/timer';
  5. export 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