mirror of
https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
synced 2025-05-21 21:20:19 +09:00
9 lines
166 B
TypeScript
9 lines
166 B
TypeScript
export function prettyObject(msg: any) {
|
|
const prettyMsg = [
|
|
"```json\n",
|
|
JSON.stringify(msg, null, " "),
|
|
"\n```",
|
|
].join("");
|
|
return prettyMsg;
|
|
}
|