ChatGPT-Next-Web/app/utils/format.ts

8 lines
199 B
TypeScript
Raw Normal View History

export function prettyObject(msg: any) {
2023-05-20 11:58:12 +00:00
if (typeof msg !== "string") {
msg = JSON.stringify(msg, null, " ");
}
const prettyMsg = ["```json", msg, "```"].join("\n");
return prettyMsg;
}