/** * Creates a stream produced from an `Effect`. * * @tsplus static effect/core/stream/Stream.Ops unwrap */ export function unwrap( effect: Effect> ): Stream { return Stream.fromEffect(effect).flatten }