@datastructures-js/trie
Advanced tools
Comparing version 3.0.0 to 3.0.1
@@ -9,2 +9,7 @@ # Changelog | ||
## [3.0.1] - 2020-04-18 | ||
### Fixed | ||
- jsdoc | ||
- README | ||
## [3.0.0] - 2020-04-09 | ||
@@ -11,0 +16,0 @@ ### Changed |
{ | ||
"name": "@datastructures-js/trie", | ||
"version": "3.0.0", | ||
"version": "3.0.1", | ||
"description": "trie implementation in javascript", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -93,2 +93,4 @@ # @datastructures-js/trie | ||
*Note: the empty string is not a default word in the trie. You can add the empty word explicitly using `.insert('')`* | ||
### .has(word) | ||
@@ -95,0 +97,0 @@ checks if a word exists in the trie. |
@@ -72,4 +72,4 @@ /** | ||
* @param {string} word | ||
* @param {TrieNode} word | ||
* @param {string} word | ||
* @param {TrieNode} node | ||
* @param {number} i | ||
* @returns {TrieNode} | ||
@@ -76,0 +76,0 @@ */ |
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
14552
343