throttleTime.js 372 B

1234567
  1. import { asyncScheduler } from 'rxjs';
  2. import { defaultThrottleConfig } from 'rxjs/internal-compatibility';
  3. import { throttleTime as higherOrder } from 'rxjs/operators';
  4. export function throttleTime(duration, scheduler = asyncScheduler, config = defaultThrottleConfig) {
  5. return higherOrder(duration, scheduler, config)(this);
  6. }
  7. //# sourceMappingURL=throttleTime.js.map