UNPKG

787 BMarkdownView Raw
1# leven
2
3> Measure the difference between two strings using the [Levenshtein distance](https://en.wikipedia.org/wiki/Levenshtein_distance) algorithm
4
5## Install
6
7```
8$ npm install leven
9```
10
11## Usage
12
13```js
14import leven from 'leven';
15
16leven('cat', 'cow');
17//=> 2
18```
19
20## Related
21
22- [leven-cli](https://github.com/sindresorhus/leven-cli) - CLI for this module
23
24---
25
26<div align="center">
27 <b>
28 <a href="https://tidelift.com/subscription/pkg/npm-leven?utm_source=npm-leven&utm_medium=referral&utm_campaign=readme">Get professional support for this package with a Tidelift subscription</a>
29 </b>
30 <br>
31 <sub>
32 Tidelift helps make open source sustainable for maintainers while giving companies<br>assurances about security, maintenance, and licensing for their dependencies.
33 </sub>
34</div>