We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fe6414 commit b10a62cCopy full SHA for b10a62c
core/src/utils/helpers.ts
@@ -461,10 +461,9 @@ export const openURL = async (
461
* Deep merges two objects, with source properties overriding target properties
462
* @param target The target object to merge into
463
* @param source The source object to merge from
464
- * @returns The merged object (new object, doesn't modify original)
+ * @returns The merged object
465
*/
466
export const deepMerge = (target: any, source: any): any => {
467
- // Create a new object to avoid modifying the original
468
const result = { ...target };
469
470
for (const key in source) {
0 commit comments