mirror of
https://github.com/Yidadaa/ChatGPT-Next-Web.git
synced 2025-08-08 23:56:33 +08:00
4 lines
83 B
TypeScript
4 lines
83 B
TypeScript
export function deepClone<T>(obj: T) {
|
|
return JSON.parse(JSON.stringify(obj));
|
|
}
|