UNPKG

@reactivex/ix-esnext-esm

Version:

The Interactive Extensions for JavaScript

12 lines (10 loc) 327 B
import { AsyncIterableX } from '../../asynciterable/asynciterablex.js'; import { TakeAsyncIterable } from '../../asynciterable/operators/take.js'; /** * @ignore */ export function takeProto(count) { return new TakeAsyncIterable(this, count); } AsyncIterableX.prototype.take = takeProto; //# sourceMappingURL=take.js.map