UNPKG

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