deepCopy(obj) {
let _obj = Array.isArray(obj) ? [] : {}
for (let i in obj) {
_obj[i] = typeof obj[i] === 'object' ? this.deepCopy(obj[i]) : obj[i]
}
return _obj
},
deepCopy(obj) {
let _obj = Array.isArray(obj) ? [] : {}
for (let i in obj) {
_obj[i] = typeof obj[i] === 'object' ? this.deepCopy(obj[i]) : obj[i]
}
return _obj
},