Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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