fast-fuzzy
Advanced tools
Comparing version 1.3.2 to 1.3.3
@@ -111,3 +111,5 @@ "use strict"; | ||
}).sort(function (a, b) { | ||
if (a.score === b.score) return a.key.length - b.key.length; | ||
if (a.score === b.score) { | ||
return Math.abs(a.key.length - term.length) - Math.abs(b.key.length - term.length); | ||
} | ||
return b.score - a.score; | ||
@@ -114,0 +116,0 @@ }); |
{ | ||
"name": "fast-fuzzy", | ||
"version": "1.3.2", | ||
"version": "1.3.3", | ||
"description": "Fast and tiny fuzzy-search utility", | ||
@@ -5,0 +5,0 @@ "main": "lib/fuzzy.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
15391
310