UNPKG

rxjs-compat

Version:

<img src="doc/asset/Rx_Logo_S.png" alt="RxJS Logo" width="86" height="86"> RxJS: Reactive Extensions For JavaScript ======================================

6 lines 298 B
import { throttle as higherOrder } from 'rxjs/operators'; import { defaultThrottleConfig } from 'rxjs/internal-compatibility'; export function throttle(durationSelector, config = defaultThrottleConfig) { return higherOrder(durationSelector, config)(this); } //# sourceMappingURL=throttle.js.map