12345678910111213141516171819202122 |
- import { isDef, isObject } from "./basic.mjs";
- const { hasOwnProperty } = Object.prototype;
- function assignKey(to, from, key) {
- const val = from[key];
- if (!isDef(val)) {
- return;
- }
- if (!hasOwnProperty.call(to, key) || !isObject(val)) {
- to[key] = val;
- } else {
- to[key] = deepAssign(Object(to[key]), val);
- }
- }
- function deepAssign(to, from) {
- Object.keys(from).forEach((key) => {
- assignKey(to, from, key);
- });
- return to;
- }
- export {
- deepAssign
- };
|