mirror of
https://github.com/Pythagora-io/gpt-pilot.git
synced 2026-04-17 03:00:45 -04:00
7 lines
157 B
JavaScript
7 lines
157 B
JavaScript
export function formatErrorMessage(error) {
|
|
if (error instanceof Error) {
|
|
return error.message || error.name || "Error";
|
|
}
|
|
return String(error);
|
|
}
|