/** * Makes a channel from an effect that returns a channel in case of success. * * @tsplus static effect/core/stream/Channel.Ops unwrap */ export function unwrap( channel: Effect> ): Channel { return Channel.fromEffect(channel).flatten }