export function inheritAttr(source, target) { for (const key in source) { if (Object.hasOwnProperty.call(target, key)) { target[key] = source[key]; } } } export function setEmpty(target) { for (const key in target) { if (Object.hasOwnProperty.call(target, key)) { target[key] = ''; } } }