trie-search
Advanced tools
Comparing version 1.0.8 to 1.0.9
@@ -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.0.8", | ||
"version": "1.0.9", | ||
"main": "index.js", | ||
@@ -9,0 +9,0 @@ "url": "https://github.com/joshjung/trie-search", |
@@ -169,3 +169,3 @@ var HashArray = require('hasharray'); | ||
var c; | ||
var c, node; | ||
if (this.options.cache && (c = this.getCache.get(phrase))) | ||
@@ -172,0 +172,0 @@ return c.value; |
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
8993564