frontend/.pnpm-store/v3/files/33/2f7c7453fd0969b30ac8a4de56ba64e6fd6cda7f33ab8562bbfff128c1f2eb926ea6115d5ec3843f56bf1c6d46acf3ff047ca475ef1a7b5d4793a3a0d9d587

7 lines
270 B
Plaintext

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