UNPKG

ix

Version:

The Interactive Extensions for JavaScript

12 lines (10 loc) 294 B
import { IterableX } from '../../iterable/iterablex.mjs'; import { repeat } from '../../iterable/operators/repeat.mjs'; /** * @ignore */ export function repeatProto(count = -1) { return repeat(count)(this); } IterableX.prototype.repeat = repeatProto; //# sourceMappingURL=repeat.mjs.map