UNPKG

@reactivex/ix-esnext-esm

Version:

The Interactive Extensions for JavaScript

12 lines (10 loc) 353 B
import { AsyncIterableX } from '../../asynciterable/asynciterablex.js'; import { ThrottleAsyncIterable } from '../../asynciterable/operators/throttle.js'; /** * @ignore */ export function throttleProto(time) { return new ThrottleAsyncIterable(this, time); } AsyncIterableX.prototype.throttle = throttleProto; //# sourceMappingURL=throttle.js.map