@drippy-music/commons
Advanced tools
Comparing version 1.0.3 to 1.0.4
@@ -54,3 +54,3 @@ const fuzz = require('fuzzball'); | ||
const fuse_match = fuse.search(query).map(e => new Match(100 - Math.floor(e.score * 100), e.refIndex)); | ||
const fuzz_match = fuzz.extract(query, choices).map(e => new Match(e[1], e[2])); | ||
const fuzz_match = fuzz.extract(query, choices, { full_process: false }).map(e => new Match(e[1], e[2])); | ||
merged.push(_mergeScores([fuse_match, fuzz_match])); | ||
@@ -57,0 +57,0 @@ } while (queries.length); |
{ | ||
"name": "@drippy-music/commons", | ||
"version": "1.0.3", | ||
"version": "1.0.4", | ||
"description": "Drippy's common Node.JS utilities", | ||
@@ -5,0 +5,0 @@ "main": "index.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
5757