export function getErrorMessage(e: unknown) { if (e instanceof Error) { return e.message } return JSON.stringify(e) }