UNPKG

@effect-ts/system

Version:

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

11 lines (10 loc) 279 B
import * as C from "../core.mjs"; /** * Pipes all of the values from this stream through the provided sink. * * @see `transduce` */ export function pipeThrough(self, sink) { return new C.Stream(self.channel[">>>"](sink.channel)); } //# sourceMappingURL=pipeThrough.mjs.map