throttleTime.js 456 B

123456789
  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, config) {
  5. if (scheduler === void 0) { scheduler = asyncScheduler; }
  6. if (config === void 0) { config = defaultThrottleConfig; }
  7. return higherOrder(duration, scheduler, config)(this);
  8. }
  9. //# sourceMappingURL=throttleTime.js.map