rxjs-compat
Version:
[](https://circleci.com/gh/ReactiveX/rxjs/tree/6.x) [](http://badge.fury.io/js/%40reactivex%2Frxjs) [![Join the chat
6 lines • 298 B
JavaScript
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