This website works better with JavaScript
Home
Explore
Help
Sign In
ryuiso
/
next-chat
Watch
1
Star
0
Fork
0
Files
Issues
0
Pull Requests
0
Wiki
Tree:
5610f423d0
Branches
Tags
main
next-chat
/
app
/
utils
/
clone.ts
clone.ts
86 B
History
Raw
1
2
3
export function deepClone<T>(obj: T): T {
return JSON.parse(JSON.stringify(obj));
}