UNPKG

@thi.ng/transducers

Version:

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

11 lines (10 loc) 121 B
function* vals(x) { for (let k in x) { if (x.hasOwnProperty(k)) { yield x[k]; } } } export { vals };