throttle.js 298 B

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