Socket
Socket
Sign inDemoInstall

fast-levenshtein

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fast-levenshtein - npm Package Compare versions

Comparing version 1.1.2 to 1.1.3

6

levenshtein.js

@@ -30,6 +30,6 @@ (function() {

var _defer = function(func) {
if (typeof process !== 'undefined' && process.nextTick) {
return process.nextTick(func);
if (typeof setImmediate === 'function') {
return setImmediate(func);
} else {
return window.setTimeout(func, 0);
return setTimeout(func, 0);
}

@@ -36,0 +36,0 @@ };

{
"name": "fast-levenshtein",
"version": "1.1.2",
"version": "1.1.3",
"description": "Efficient implementation of Levenshtein algorithm with asynchronous callback support",

@@ -5,0 +5,0 @@ "main": "levenshtein.js",

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