@reactivex/ix-esnext-esm
Version:
The Interactive Extensions for JavaScript
12 lines (10 loc) • 348 B
JavaScript
import { AsyncIterableX } from '../../asynciterable/asynciterablex';
import { ThrottleAsyncIterable } from '../../asynciterable/operators/throttle';
/**
* @ignore
*/
export function throttleProto(time) {
return new ThrottleAsyncIterable(this, time);
}
AsyncIterableX.prototype.throttle = throttleProto;
//# sourceMappingURL=throttle.mjs.map