UNPKG

@thi.ng/transducers

Version:

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

6 lines (5 loc) 184 B
import { implementsFunction } from "@thi.ng/checks/implements-function"; const ensureTransducer = (x) => implementsFunction(x, "xform") ? x.xform() : x; export { ensureTransducer };