NextChat-U/app/utils/format.ts

8 lines
199 B
TypeScript
Raw Normal View History

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