UNPKG
@telstra/core
Version:
latest (0.0.3)
0.0.3
0.0.1
0.0.0
Telstra SDK Core
github.com/telstra/telstra-sdk-node
telstra/telstra-sdk-node
@telstra/core
/
dist
/
utils
/
error
/
error.utils.js
3 lines
(2 loc)
•
157 B
JavaScript
View Raw
1
2
3
import
{ SDKError } from
'../../errors/index.js'
; export
const
getErrorMessage = (
error
) =>
error
instanceof SDKError ?
error
.formatError() :
error
.message;