Socket
Socket
Sign inDemoInstall

levenshtein-edit-distance

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

levenshtein-edit-distance

Levenshtein edit distance. No cruft. Real fast.


Version published
Weekly downloads
212K
decreased by-6.56%
Maintainers
1
Weekly downloads
 
Created
Source

levenshtein-edit-distance Build Status Coverage Status

browser support


Levenshtein edit distance (by Vladimir Levenshtein). No cruft. Real fast.

Installation

NPM:

$ npm install levenshtein-edit-distance

Component.js:

$ component install wooorm/levenshtein-edit-distance

Usage

var levenshteinDistance = require('levenshtein-edit-distance');

levenshteinDistance('levenshtein', 'levenshtein'); // 0
levenshteinDistance('sitting', 'kitten'); // 3
levenshteinDistance('gumbo', 'gambol'); // 2
levenshteinDistance('saturday', 'sunday'); // 3

/* Case sensitive! */
levenshteinDistance('DwAyNE', 'DUANE') !== levenshteinDistance('dwayne', 'DuAnE'); // true

/* Order insensitive */
levenshteinDistance("aarrgh", "aargh") === levenshteinDistance("aargh", "aarrgh"); // true

Other Levenshtein libraries

Benchmark

On a MacBook Air, it runs about 313,000 op/s, which is faster than the competition.

Run the benchmark yourself:

$ npm run install-benchmark # Just once of course.
$ npm run benchmark
         levenshtein-edit-distance — this module
313 op/s » op/s * 1,000

         fast-levenshtein — “fast”... pff ;)
268 op/s » op/s * 1,000

         natural — to be fair, it offers more options
213 op/s » op/s * 1,000

         Levenshtein — to be fair, it lets you inspect a matrix
141 op/s » op/s * 1,000

License

MIT

Keywords

FAQs

Package last updated on 28 Jun 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc