diff
diff copied to clipboard
Javascript utility for calculating deep difference, capturing changes, and applying changes across objects; for nodejs and the browser.
Hi, `deepDiff.diff({}, [])` shows difference but this doesn't: ``` function A() {} var a = new A(); var b = {}; deepDiff.diff(a, b) ``` I think it would be reasonable...
Hello folks, After facing many issues with bugs in this awesome but unmaintained library, I have done a full migration into typescript. The typescript source code is available [here](https://github.com/therohk/datum-merge/blob/main/src/diff-lib/deep-diff.ts) (deep-diff.ts)...