ChatGPT-Next-Web/app/utils/clone.ts

4 lines
86 B
TypeScript

export function deepClone<T>(obj: T): T {
return JSON.parse(JSON.stringify(obj));
}