UNPKG

@openocean.finance/widget-sdk

Version:

OpenOcean Any-to-Any Cross-Chain-Swap SDK

8 lines (7 loc) 171 B
export const getRootCause = (e: Error | undefined) => { let rootCause = e while (rootCause?.cause) { rootCause = rootCause.cause as Error } return rootCause }