UNPKG

@thi.ng/transducers

Version:

Collection of ~170 lightweight, composable transducers, reducers, generators, iterators for functional data transformations

9 lines (8 loc) 96 B
function* repeat(x, n = Infinity) { while (n-- > 0) { yield x; } } export { repeat };