/** * @tsplus static effect/core/io/Exit.Ops fromMaybe */ export function fromMaybe(option: Maybe): Exit { switch (option._tag) { case "None": return Exit.fail(undefined) case "Some": return Exit.succeed(option.value) } }