UNPKG

@reactivex/ix-esnext-esm

Version:

The Interactive Extensions for JavaScript

12 lines (10 loc) 346 B
import { AsyncIterableX } from '../../asynciterable/asynciterablex.js'; import { RepeatAsyncIterable } from '../../asynciterable/operators/repeat.js'; /** * @ignore */ export function repeatProto(count = -1) { return new RepeatAsyncIterable(this, count); } AsyncIterableX.prototype.repeat = repeatProto; //# sourceMappingURL=repeat.js.map