trie-search
Advanced tools
Comparing version 1.2.11 to 1.3.4
@@ -6,3 +6,3 @@ { | ||
"description": "A trie implementation that maps keys to objects for rapid retrieval by phrases. Most common use will be for typeahead searches.", | ||
"version": "1.2.11", | ||
"version": "1.3.4", | ||
"main": "index.js", | ||
@@ -13,3 +13,3 @@ "url": "https://github.com/joshjung/trie-search", | ||
"scripts": { | ||
"test": "mocha", | ||
"test": "jest", | ||
"release:major": "npm version major && git push --follow-tags && npm publish", | ||
@@ -42,3 +42,6 @@ "release:minor": "npm version minor && git push --follow-tags && npm publish", | ||
"hasharray": "^1.1.1" | ||
}, | ||
"devDependencies": { | ||
"jest": "^26.4.2" | ||
} | ||
} |
@@ -88,3 +88,2 @@ var HashArray = require('hasharray'); | ||
val = val.toString(); | ||
val = this.options.ignoreCase ? val.toLowerCase() : val; | ||
@@ -91,0 +90,0 @@ var expandedValues = this.expandString(val); |
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
9012406
1
1964