Skip to content

Commit

Permalink
fix(core): mergeDeep handles nulls
Browse files Browse the repository at this point in the history
  • Loading branch information
nperez0111 committed Jun 12, 2024
1 parent 856ec70 commit ceecfbb
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 7 deletions.
10 changes: 3 additions & 7 deletions packages/core/src/utilities/mergeDeep.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,10 @@ export function mergeDeep(target: Record<string, any>, source: Record<string, an

if (isPlainObject(target) && isPlainObject(source)) {
Object.keys(source).forEach(key => {
if (isPlainObject(source[key])) {
if (!(key in target)) {
Object.assign(output, { [key]: source[key] })
} else {
output[key] = mergeDeep(target[key], source[key])
}
if (isPlainObject(source[key]) && isPlainObject(target[key])) {
output[key] = mergeDeep(target[key], source[key])
} else {
Object.assign(output, { [key]: source[key] })
output[key] = source[key]
}
})
}
Expand Down
30 changes: 30 additions & 0 deletions tests/cypress/integration/core/mergeDeep.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,36 @@ describe('mergeDeep', () => {
expect(merged).to.deep.eq(result)
})

it('should merge when source has null value', () => {
const one = {
a: null,
}
const two = {
a: { c: 3 },
}
const result = {
a: { c: 3 },
}
const merged = mergeDeep(one, two)

expect(merged).to.deep.eq(result)
})

it('should allow nulling a value', () => {
const one = {
a: { c: 3 },
}
const two = {
a: { c: null },
}
const result = {
a: { c: null },
}
const merged = mergeDeep(one, two)

expect(merged).to.deep.eq(result)
})

it('should merge deep', () => {
const one = {
a: 1,
Expand Down

0 comments on commit ceecfbb

Please sign in to comment.