function deepAssign()

in utils.js [23:28]


function deepAssign(dstObj, ...srcObjs) {
  srcObjs.forEach((obj) => {
    Object.assign(dstObj, deepClone(obj));
  });
  return dstObj;
}