vant/packages/utils/deep-assign.ts
2019-04-08 17:18:36 +08:00

31 lines
577 B
TypeScript

/* eslint-disable no-use-before-define */
import { isDef, isObj } from '.';
const { hasOwnProperty } = Object.prototype;
type Object = {
[key: string]: any;
}
function assignKey(to: Object, from: Object, key: string) {
const val = from[key];
if (!isDef(val)) {
return;
}
if (!hasOwnProperty.call(to, key) || !isObj(val)) {
to[key] = val;
} else {
to[key] = deepAssign(Object(to[key]), from[key]);
}
}
export function deepAssign(to: Object, from: Object) {
Object.keys(from).forEach(key => {
assignKey(to, from, key);
});
return to;
}