/** * @tsplus static effect/core/stream/Channel.Ops fromEither */ export function fromEither( either: Either ): Channel { return Channel.suspend(either.fold(Channel.fail, Channel.succeed)) }