You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+40-28Lines changed: 40 additions & 28 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,10 +9,10 @@ High-performance, low-allocating JSON objects diff and patch extension for Syste
9
9
- Target latest .NET Standard and .NET Framework 4.6.1 (for legacy apps) and leverage latest .NET features
10
10
- Alternative to [jsondiffpatch.net](https://github.com/wbish/jsondiffpatch.net) which is based on Newtonsoft.Json
11
11
- Fast large JSON document diffing with less memory consumption (see [benchmark](https://github.com/weichch/system-text-json-jsondiffpatch/blob/main/Benchmark.md))
12
-
- Support smart array diffing (e.g. move detect) using LCS and custom array item matcher
12
+
- Support smart array diffing (e.g. move detect) using LCS (Longest Common Subsequence) and custom array item matcher
13
13
-_(Only when not using RFC 6902 format)_ Support diffing long text using [google-diff-match-patch](http://code.google.com/p/google-diff-match-patch/), or write your own diff algorithm
14
14
- Bonus `JsonNode.DeepClone` and `JsonNode.DeepEquals` methods
15
-
- Bouns `JsonValueComparer` that implements semantic comparison of two `JsonValue` objects (including `JsonValue` backed by `JsonElement`)
15
+
- Bouns [`JsonValueComparer`](https://github.com/weichch/system-text-json-jsondiffpatch/blob/main/src/SystemTextJson.JsonDiffPatch/JsonValueComparer.cs) that implements semantic comparison of two `JsonValue` objects (including `JsonValue` backed by `JsonElement`)
16
16
- JSON assert for xUnit, MSTest v2 and NUnit with customizable delta output
17
17
18
18
## Install
@@ -25,6 +25,17 @@ High-performance, low-allocating JSON objects diff and patch extension for Syste
0 commit comments