* Returns the value stored directly on this trie node. * @returns {V | undefined} stored value
()
| 184 | * @returns {V | undefined} stored value |
| 185 | */ |
| 186 | _getValue() { |
| 187 | return this.v; |
| 188 | } |
| 189 | |
| 190 | /** |
| 191 | * Reports whether this trie node currently stores a value. |
no outgoing calls
no test coverage detected