// ets_tracing: off import type * as T from "../../../../Effect/index.js" import type * as C from "../core.js" import * as Effect from "./effect.js" import * as Flatten from "./flatten.js" /** * Creates a stream produced from an effect */ export function unwrap( self: T.Effect> ): C.Stream { return Flatten.flatten(Effect.effect(self)) }