UNPKG

@thi.ng/transducers

Version:

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

9 lines (8 loc) 153 B
import { peek as _peek } from "@thi.ng/arrays/peek"; import { map } from "./map.js"; function peek(src) { return map(_peek, src); } export { peek };