flitbit / diff

Javascript utility for calculating deep difference, capturing changes, and applying changes across objects; for nodejs and the browser.
MIT License
2.99k stars 213 forks source link

Array order problem #121

Closed akyuznurettin closed 6 years ago

akyuznurettin commented 6 years ago

I have a json array. For example arr= ["1", "2", "3", "4"] After deleting "3", the array looks like arr= ["1", "2", "4"] then differences are that 3rd element is edited and 4th element is deleted. It doesn't work. How to avoid from this situation?

pschaub commented 6 years ago

duplicate; known issue; see #37