/** * @tsplus static effect/core/stream/Channel.Ops fromMaybe */ export function fromMaybe( option: Maybe ): Channel, never, A> { return Channel.suspend(option.fold(Channel.fail(Maybe.none), Channel.succeed)) }