UNPKG

@thi.ng/transducers

Version:

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

8 lines (7 loc) 147 B
import { __mathOp } from "./internal/mathop.js"; function mul(...args) { return __mathOp(mul, (acc, x) => acc * x, 1, args); } export { mul };