mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-22 15:01:13 +03:00
713ed26971
add mcp tools
26 lines
776 B
TypeScript
26 lines
776 B
TypeScript
type ErrorWithMessage = {
|
|
message: string
|
|
}
|
|
|
|
const isErrorWithMessage = (error: unknown): error is ErrorWithMessage => {
|
|
return (
|
|
typeof error === 'object' && error !== null && 'message' in error && typeof (error as Record<string, unknown>).message === 'string'
|
|
)
|
|
}
|
|
|
|
const toErrorWithMessage = (maybeError: unknown): ErrorWithMessage => {
|
|
if (isErrorWithMessage(maybeError)) return maybeError
|
|
|
|
try {
|
|
return new Error(JSON.stringify(maybeError))
|
|
} catch {
|
|
// fallback in case there's an error stringifying the maybeError
|
|
// like with circular references for example.
|
|
return new Error(String(maybeError))
|
|
}
|
|
}
|
|
|
|
export const getErrorMessage = (error: unknown) => {
|
|
return toErrorWithMessage(error).message
|
|
}
|