ix
Version:
The Interactive Extensions for JavaScript
12 lines (10 loc) • 301 B
JavaScript
import { AsyncIterableX } from '../../asynciterable/asynciterablex';
import { repeat } from '../../asynciterable/repeat';
/**
* @ignore
*/
export function repeatProto(count = -1) {
return repeat(this, count);
}
AsyncIterableX.prototype.repeat = repeatProto;
//# sourceMappingURL=repeat.mjs.map