Simplify deepClone snippet's handling of arrays.

This commit is contained in:
Oscar
2018-05-10 19:22:35 +01:00
parent 78e3890e98
commit 76c56195b1
2 changed files with 4 additions and 18 deletions

View File

@ -7,26 +7,20 @@ Use `Object.assign()` and an empty object (`{}`) to create a shallow clone of th
Use `Object.keys()` and `Array.forEach()` to determine which key-value pairs need to be deep cloned.
```js
const deepClone = obj => {
if (Array.isArray(obj)){
let arr = [];
obj.forEach(
(i,v) => (arr[i] = typeof v === 'object' ? deepClone(v) : v)
)
return arr;
}else {
let clone = Object.assign({}, obj);
Object.keys(clone).forEach(
key => (clone[key] = typeof obj[key] === 'object' ? deepClone(obj[key]) : obj[key])
);
return clone;
}
return Array.isArray(obj) ? (clone.length = obj.length) && Array.from(clone) : obj;
};
```
```js
const a = { foo: 'bar', obj: { a: 1, b: 2 } };
const b = deepClone(a); // a !== b, a.obj !== b.obj
```

View File

@ -1,16 +1,8 @@
const deepClone = obj => {
if (Array.isArray(obj)){
let arr = [];
obj.forEach(
(i,v) => (arr[i] = typeof v === 'object' ? deepClone(v) : v)
)
return arr;
}else {
let clone = Object.assign({}, obj);
Object.keys(clone).forEach(
key => (clone[key] = typeof obj[key] === 'object' ? deepClone(obj[key]) : obj[key])
);
return clone;
}
return Array.isArray(obj) ? (clone.length = obj.length) && Array.from(clone) : obj;
};
module.exports = deepClone;