()
| 117 | return gen(); |
| 118 | } |
| 119 | keys() { |
| 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); |
no outgoing calls
no test coverage detected