import type { SafeValue } from "../values/values"; export const Throwable = { async from(safePromise: Promise>): Promise { const result = await safePromise; if (result.error) { throw result.data; } return result.data; }, };