UNPKG

@tristeroresearch/mach-sdk

Version:

A TypeScript SDK for integrating with Mach's API.

12 lines (11 loc) 235 B
/** * @module rootCause * @description Get the root cause of an error */ export const getRootCause = (e) => { let rootCause = e; while (rootCause?.cause) { rootCause = rootCause.cause; } return rootCause; };