UNPKG

@thi.ng/transducers

Version:

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

11 lines (10 loc) 118 B
function* keys(x) { for (let k in x) { if (x.hasOwnProperty(k)) { yield k; } } } export { keys };