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

4 lines
83 B
TypeScript

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