mirror of
https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
synced 2025-05-19 20:20:16 +09:00
4 lines
83 B
TypeScript
4 lines
83 B
TypeScript
export function deepClone<T>(obj: T) {
|
|
return JSON.parse(JSON.stringify(obj));
|
|
}
|