diff-match-patch icon indicating copy to clipboard operation
diff-match-patch copied to clipboard

npm package for https://github.com/google/diff-match-patch

Results 8 diff-match-patch issues
Sort by recently updated
recently updated
newest added

https://github.com/JackuB/diff-match-patch/blob/bed54bb6920d51cab3b52bf407216b343473a622/LICENSE#L190

The following code: ```javascript const DiffMatchPatch = require('diff-match-patch'); const dmp = new DiffMatchPatch(); const patchText = dmp.patch_toText(dmp.patch_make('', 'πŸ‘¨β€πŸ¦° πŸ‘¨πŸΏβ€πŸ¦° πŸ‘¨β€πŸ¦± πŸ‘¨πŸΏβ€πŸ¦± πŸ¦ΉπŸΏβ€β™‚οΈ')); const patchObj = dmp.patch_fromText(patchText); const [patchedText] = dmp.patch_apply(patchObj,...

demand: I want to match based on the number of rows. According to the basis of each line, get the detailed information about deleting/adding/modifying each line The data information view...

Hi, when I try to access to `https://code.google.com/p/google-diff-match-patch/wiki/API` I get this: > SVN hosting has been permanently disabled. Where can I find the documentation? Thanks

1.0.0 worked. In 1.0.3, the API is somehow messed up. The test harness does not detect it. // that's what it should be but is not: var a = [[DIFF_EQUAL,...

The docs says this method should create something that looks like a unified diff. When I try it I just get "[object ...]" blah blah output. Looking at the actual...