util.js 79 字节
Newer Older
1 2 3
const deepCopy = (obj) => JSON.parse(JSON.stringify(obj))

export { deepCopy }