2f7c7453fd0969b30ac8a4de56ba64e6fd6cda7f33ab8562bbfff128c1f2eb926ea6115d5ec3843f56bf1c6d46acf3ff047ca475ef1a7b5d4793a3a0d9d587 270 B

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