UNPKG

floating-vue

Version:

Easy Vue tooltips, dropdowns, menus & popovers using floating-ui

12 lines (11 loc) 275 B
export function assign (to, from) { for (const key in from) { if (Object.prototype.hasOwnProperty.call(from, key)) { if (typeof from[key] === 'object' && to[key]) { assign(to[key], from[key]) } else { to[key] = from[key] } } } }