* @param {string} character * @return {boolean}
(character)
| 63 | * @return {boolean} |
| 64 | */ |
| 65 | hasChild(character) { |
| 66 | return this.children.has(character); |
| 67 | } |
| 68 | |
| 69 | /** |
| 70 | * Check whether current TrieNode has children or not. |
no test coverage detected