UNPKG

vike

Version:

The Framework *You* Control - Next.js & Nuxt alternative for unprecedented flexibility and dependability.

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