RexSkz / json-diff-kit

A better JSON differ & viewer, support LCS diff for arrays and recognise some changes as "modification" apart from simple "remove"+"add".
https://json-diff-kit.js.org
MIT License
138 stars 12 forks source link

Null problem #22

Closed k-rokicki closed 1 year ago

k-rokicki commented 1 year ago

When diffing

{
    "a": null
}

and

{
    "a": null
}

we get

{ 
    "a": {
    }
}
RexSkz commented 1 year ago

Fixed in 1.0.18, the playground is also updated.

image

k-rokicki commented 1 year ago

Excellent, thank you very much!