diff-text
Version:
Just get the diff of a simple inline text.
44 lines (24 loc) • 890 B
Markdown
# diff-text
> Inline text diff algorithm. Simplified from [https://neil.fraser.name/writing/diff/](https://neil.fraser.name/writing/diff/). For input text diff in HTML with Chinese input software.
[](https://travis-ci.org/ProtoTeam/diff-text) [](https://coveralls.io/github/ProtoTeam/diff-text)
## Usage
> **npm i --save diff-text**
```js
var diffText = require('diff-text');
diffText('diff---text', 'diff+++text');
// will get array like below:
[
[0, 'diff'], // equal
[-1, '---'], // delete
[1, '+++'], // add
[0, 'text'] // equal
]
```
## Test & Perf
```
> npm run test
> npm run pref
diff-text x 1,238,388 ops/sec ±1.22% (88 runs sampled)
```
## License
ISC@[ProtoTeam](https://github.com/ProtoTeam).