(callback, thisArg)
| 120 | return this._map.keys(); |
| 121 | } |
| 122 | forEach(callback, thisArg) { |
| 123 | for (const [key, value] of this.entries()) { |
| 124 | callback.call(thisArg === undefined ? this : thisArg, key, value, this); |
| 125 | } |
| 126 | } |
| 127 | [Symbol.iterator]() { |
| 128 | return this.entries(); |
| 129 | } |
no test coverage detected