/** * Flattens an `Exit` of an `Exit` into a single `Exit` value. * * @tsplus getter effect/core/io/Exit flatten */ export function flatten(self: Exit>): Exit { return self.flatMap(identity) }