UNPKG

mycoder-agent

Version:

Agent module for mycoder - an AI-powered software development assistant

9 lines 243 B
export const errorToString = (error) => { if (error instanceof Error) { return `${error.constructor.name}: ${error.message}`; } else { return JSON.stringify(error); } }; //# sourceMappingURL=errorToString.js.map