UNPKG

222 BJavaScriptView Raw
1import { of } from './of';
2import { RepeatIterable } from './operators/repeat';
3export function repeatValue(value, count = -1) {
4 return new RepeatIterable(of(value), count);
5}
6
7//# sourceMappingURL=repeatvalue.mjs.map