* Stores a value directly on this trie node. * @param {V} v value * @private
(v)
| 201 | * @private |
| 202 | */ |
| 203 | _setValue(v) { |
| 204 | this.f |= 1; |
| 205 | this.v = v; |
| 206 | } |
| 207 | |
| 208 | /** |
| 209 | * Removes the value stored directly on this trie node. |
no outgoing calls
no test coverage detected