mirror of
https://github.com/Pythagora-io/gpt-pilot.git
synced 2026-05-09 03:00:20 -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);
|
|
}
|