diff icon indicating copy to clipboard operation
diff copied to clipboard

Javascript utility for calculating deep difference, capturing changes, and applying changes across objects; for nodejs and the browser.

Results 42 diff issues
Sort by recently updated
recently updated
newest added

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...

enhancement

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)...