dotfiles/.vscode/extensions/vscodevim.vim-0.2.0/node_modules/diff-match-patch
Cyryl Płotnicki 280bcab25f VSCode update
2016-09-24 13:12:34 +02:00
..
test VSCode update 2016-09-24 13:12:34 +02:00
.npmignore VSCode update 2016-09-24 13:12:34 +02:00
.travis.yml VSCode update 2016-09-24 13:12:34 +02:00
index.js VSCode update 2016-09-24 13:12:34 +02:00
LICENSE VSCode update 2016-09-24 13:12:34 +02:00
package.json VSCode update 2016-09-24 13:12:34 +02:00
README.md VSCode update 2016-09-24 13:12:34 +02:00

diff-match-patch

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

Build Status Dependency Status NPM version

Installation

npm install diff-match-patch

API

https://code.google.com/p/google-diff-match-patch/wiki/API

var DiffMatchPatch = require('diff-match-patch');
var dmp = new DiffMatchPatch();
//use the methods that dmp has
//see: https://code.google.com/p/google-diff-match-patch/wiki/API

//You can also use the following properties:

DiffMatchPatch.DIFF_DELETE = -1;
DiffMatchPatch.DIFF_INSERT = 1;
DiffMatchPatch.DIFF_EQUAL = 0;

License

http://www.apache.org/licenses/LICENSE-2.0