diff-json
diff-json copied to clipboard
A javascript object diff tool
Just a typo on your change item!
I have the following code: ``` var diffJson = require("diff-json") oldArray = [ { "id": "a", "count": 1 }, { "id": "b", "count": 0 } ]; newArray = [ {...
It seems that the logic around removing items from an array is seriously dodgy. For example, in the test you go from toys ["car", "doll", "car"] to [] by doing...
I'm getting the following output if I run `npm run test` ``` ✓ should return correct diff for object with embedded array object that does not have key specified ✓...
A simple test case: ``` it 'should properly handle new null property', -> before = {} after = { newProp: null } changesets.applyChanges before, changesets.diff before, after expect(after).to.eql before ```...
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [mocha](https://mochajs.org/) ([source](https://togithub.com/mochajs/mocha)) | devDependencies | major | [`5.2.0` -> `7.0.1`](https://renovatebot.com/diffs/npm/mocha/5.2.0/7.0.1) | --- ###...