Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

auditTime.js 270B

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