mirror of
https://github.com/ChatGPTNextWeb/NextChat.git
synced 2026-01-30 13:59:48 +08:00
4 lines
86 B
TypeScript
4 lines
86 B
TypeScript
export function deepClone<T>(obj: T): T {
|
|
return JSON.parse(JSON.stringify(obj));
|
|
}
|