blob: e94a8b6c30097fd6d051f24aab1c5e2a58492559 [file] [log] [blame]
import { async } from '../scheduler/async';
import { audit } from './audit';
import { timer } from '../observable/timer';
export function auditTime(duration, scheduler = async) {
return audit(() => timer(duration, scheduler));
}
//# sourceMappingURL=auditTime.js.map