fix(Cascader): assignKey function deep clone Array (#8326)

Co-authored-by: nemo-shen <1034131477@qq.com>
This commit is contained in:
nemo-shen 2021-03-14 10:17:16 +08:00 committed by GitHub
parent 869b9a66c6
commit bf1652e938
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,12 +1,22 @@
import { deepAssign } from './deep-assign';
import { isDef } from './index';
import { ObjectIndex } from './types';
export function deepClone(obj: ObjectIndex): object {
if (!isDef(obj)) {
return obj;
}
export function deepClone(obj: object): object {
if (Array.isArray(obj)) {
return obj.map((item) => deepClone(item));
}
if (typeof obj === 'object') {
return deepAssign({}, obj);
const to = {} as ObjectIndex;
Object.keys(obj).forEach((key) => {
to[key] = deepClone(obj[key]);
});
return to;
}
return obj;