mirror of
https://github.com/ChatGPTNextWeb/NextChat.git
synced 2026-02-04 00:57:34 +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));
|
|
}
|