export function getRootCause(error) { if (error.source) { return getRootCause(error.source); } else { return error; } }