throttle.js 337 B

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