AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 AiToEarn
clone.ts
根目录
/
project
/
aitoearn-electron
/
src
/
utils
/
clone.ts
1
export function deepClone<T>(obj: T) {
2
return JSON.parse(JSON.stringify(obj));
3
}
4
4 lines
TYPESCRIPT