()
| 97 | this._size = 0; |
| 98 | } |
| 99 | entries() { |
| 100 | const self = this; |
| 101 | function* gen() { |
| 102 | for (const [key, values] of self._map.entries()) { |
| 103 | for (const value of values) { |
| 104 | yield [key, value]; |
| 105 | } |
| 106 | } |
| 107 | } |
| 108 | return gen(); |
| 109 | } |
| 110 | values() { |
| 111 | const self = this; |
| 112 | function* gen() { |
no outgoing calls
no test coverage detected