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:
b5d3348d99
Branches
Tags
main
next-chat
/
app
/
utils
/
clone.ts
clone.ts
83 B
History
Raw
1
2
3
export function deepClone<T>(obj: T) {
return JSON.parse(JSON.stringify(obj));
}