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 431B

1234567891011
  1. /** PURE_IMPORTS_START _scheduler_async,_audit,_observable_timer PURE_IMPORTS_END */
  2. import { async } from '../scheduler/async';
  3. import { audit } from './audit';
  4. import { timer } from '../observable/timer';
  5. export function auditTime(duration, scheduler) {
  6. if (scheduler === void 0) {
  7. scheduler = async;
  8. }
  9. return audit(function () { return timer(duration, scheduler); });
  10. }
  11. //# sourceMappingURL=auditTime.js.map