mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
31 lines
577 B
TypeScript
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;
|
|
}
|