This website works better with JavaScript
Accueil
Explorer
Aide
Connexion
tuonq
/
ChatAI
Suivre
1
Voter
0
Fork
0
Fichiers
Tickets
0
Pull Requests
0
Wiki
Aborescence:
dbee5bc515
Branches
Tags
master
ChatAI
/
app
/
utils
/
clone.ts
clone.ts
83 B
Historique
Raw
1
2
3
export
function
deepClone
<
T
>(
obj: T
)
{
return
JSON
.parse(
JSON
.stringify(obj));
}