* Reports whether this trie node currently stores a value. * @returns {boolean} true when a value is present
()
| 192 | * @returns {boolean} true when a value is present |
| 193 | */ |
| 194 | _hasValue() { |
| 195 | return (this.f & 1) === 1; |
| 196 | } |
| 197 | |
| 198 | /** |
| 199 | * Stores a value directly on this trie node. |
no outgoing calls
no test coverage detected