* Removes an empty bucket key and its corresponding nested entry. * @param {K} key key to be removed * @returns {void}
(key)
| 136 | * @returns {void} |
| 137 | */ |
| 138 | _deleteKey(key) { |
| 139 | this._keys.delete(key); |
| 140 | this._map.delete(key); |
| 141 | } |
| 142 | |
| 143 | /** |
| 144 | * Removes and returns the smallest item according to the configured bucket |
no test coverage detected