UNPKG

vike

Version:

(Replaces Next.js/Nuxt) 🔨 Composable framework to build advanced applications with flexibility and stability.

5 lines (4 loc) • 197 B
// Same as `Object.assign(obj, objNewVals)` but ensure that `objNewVals` properties already exist on `obj` export function objectAssignSafe(obj, objNewVals) { Object.assign(obj, objNewVals); }