We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1869ce commit ec723ecCopy full SHA for ec723ec
docs/formatters.md
@@ -46,7 +46,7 @@ but you can use it programmatically too:
46
```javascript
47
var delta = jsondiffpatch.diff(left, right);
48
var output = jsondiffpatch.formatters.console.format(delta);
49
-console.log(delta);
+console.log(output);
50
51
// or simply
52
jsondiffpatch.console.log(delta);
@@ -57,7 +57,7 @@ jsondiffpatch.console.log(delta);
57
58
59
var output = jsondiffpatch.formatters.jsonpatch.format(delta);
60
61
```
62
63
_Don't use with `textDiff` as it isn't suppported_
0 commit comments