Deeply merges two or more objects into a single object.
The objects to merge.
A new object with merged properties.
mergeObjects({ a: 1 }, { b: 2 }); // { a: 1, b: 2 } Copy
mergeObjects({ a: 1 }, { b: 2 }); // { a: 1, b: 2 }
Deeply merges two or more objects into a single object.