UNPKG

@thi.ng/transducers

Version:

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

8 lines (7 loc) 154 B
import { compare } from "@thi.ng/compare/compare"; function* sortedKeys(x, cmp = compare) { yield* Object.keys(x).sort(cmp); } export { sortedKeys };