3bb57ca3850ea29446a004e7bbbbcaee2d4afef6f7cb9a30fd6c09ad5a4b26dbded4e2a50bb1f3a8cd81b7b9b6c957484ab156e7583e1d112062c956a1b6d2 352 B

12345678
  1. import { asyncScheduler } from '../scheduler/async';
  2. import { throttle } from './throttle';
  3. import { timer } from '../observable/timer';
  4. export function throttleTime(duration, scheduler = asyncScheduler, config) {
  5. const duration$ = timer(duration, scheduler);
  6. return throttle(() => duration$, config);
  7. }
  8. //# sourceMappingURL=throttleTime.js.map