mergeDeep
const a = {
"a": 1,
"b": 2
}
const b = {
"c": 3,
"d": 4,
"e": {
t: 1
}
}
const c = fyzUtils.mergeDeep(a, b);
const d = c.a;
const e = c.e.t;
const a = {
"a": 1,
"b": 2
}
const b = {
"c": 3,
"d": 4,
"e": {
t: 1
}
}
const c = fyzUtils.mergeDeep(a, b);
const d = c.a;
const e = c.e.t;