UNPKG

@effect-ts/system

Version:

Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.

9 lines (8 loc) 280 B
import * as FoldEffect from "./foldEffect.mjs"; /** * A sink that effectfully folds its inputs with the provided function and initial state. */ export function foldLeftEffect(z, f) { return FoldEffect.foldEffect(z, _ => true, f); } //# sourceMappingURL=foldLeftEffect.mjs.map