UNPKG

@thi.ng/transducers

Version:

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

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