UNPKG
@getclave/lifi-sdk
Version:
latest (4.1.2)
4.1.2
4.1.1
4.1.0
4.0.5
4.0.4
4.0.3
4.0.2
4.0.1
4.0.0
3.6.18
3.6.17
3.6.16
3.6.15
3.6.14
3.6.13
3.6.12
3.6.11
LI.FI Any-to-Any Cross-Chain-Swap SDK
github.com/getclave/lifi-sdk
getclave/lifi-sdk
@getclave/lifi-sdk
/
src
/
errors
/
utils
/
rootCause.ts
8 lines
(7 loc)
•
171 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
export
const
getRootCause
= (
e:
Error
|
undefined
) => {
let
rootCause = e
while
(rootCause?.
cause
) { rootCause = rootCause.
cause
as
Error
}
return
rootCause }