UNPKG

@effect-ts/system

Version:

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

10 lines (9 loc) 234 B
import * as Drain from "./drain.mjs"; import * as Run from "./run.mjs"; /** * Runs a channel until the end is received */ export function runDrain(self) { return Run.run(Drain.drain(self)); } //# sourceMappingURL=runDrain.mjs.map