mirror of
https://github.com/Yanyutin753/ChatGPT-Next-Web-LangChain-Gpt-4-All.git
synced 2025-10-15 23:52:59 +00:00
4 lines
83 B
TypeScript
4 lines
83 B
TypeScript
export function deepClone<T>(obj: T) {
|
|
return JSON.parse(JSON.stringify(obj));
|
|
}
|