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) 253 B
import * as CH from "../Channel/index.mjs"; import * as C from "./core.mjs"; /** * Creates a single-value sink produced from an effect */ export function fromEffect(b) { return new C.Sink(CH.fromEffect(b)); } //# sourceMappingURL=fromEffect.mjs.map