UNPKG

@thi.ng/transducers

Version:

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

9 lines (8 loc) 163 B
import { identity } from "@thi.ng/api/fn"; import { mapcat } from "./mapcat.js"; function flatten1(src) { return mapcat(identity, src); } export { flatten1 };