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) 265 B
// ets_tracing: off import * as T from "./deps.mjs"; import { fromEffect } from "./fromEffect.mjs"; /** * Lift a pure value into an effect */ export function succeed(a, __trace) { return fromEffect(T.succeed(a), __trace); } //# sourceMappingURL=succeed.mjs.map