* Returns visible key/value pairs using the external representation. * @returns {[K, Cell<V>][]} array of key/value pairs
()
| 175 | * @returns {[K, Cell<V>][]} array of key/value pairs |
| 176 | */ |
| 177 | asPairArray() { |
| 178 | this._compress(); |
| 179 | return Array.from(this.map.entries(), extractPair); |
| 180 | } |
| 181 | |
| 182 | /** |
| 183 | * Returns the visible contents as a plain `Map`. |