2.3.1 • Published 9 years ago

diff-mark v2.3.1

Weekly downloads
13
License
MIT
Repository
github
Last release
9 years ago

diff-mark

Build Status NPM version

A variant of Diffmark implemented in JavaScript.

Some important difference to the original C# version:

  • Diff strings are strictly validated before marking.
  • The derived diff strings are less ambiguous and more legible.

Demo

http://jakwings.github.io/diff-mark/

Usage

You can install it via npm install diff-mark, or just include the script diffmark.js in your web pages.

var diffmark = diffmark || require('diff-mark');

diffmark.diff('grow', 'grew');  // -> '--ew'
diffmark.mark('grow', 'ing');   // -> 'growing'

Specification: https://github.com/TheBerkin/Diffmark