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 1,223,000 op/s, which is marginally faster than hiddentao/fast-levenshtein, and loads faster than the other competition.

Run the benchmark yourself:

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

             fast-levenshtein
  1,209 op/s » op/s * 1,000

             levenshtein-component
    330 op/s » op/s * 1,000

             levenshtein-deltas
    244 op/s » op/s * 1,000

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

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

License

MIT

Keywords

FAQs

Package last updated on 12 Jul 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