/** * Attempts to convert defects into a failure, throwing away all information * about the cause of the failure. * * @tsplus getter effect/core/io/Effect absorb */ export function absorb(self: Effect) { return self.absorbWith(identity) }