(s)
| 37170 | const o = Array.from(this.keys()).find(shallowArrayEquals(s)) |
| 37171 | return super.delete(o) |
| 37172 | } |
| 37173 | get(s) { |
| 37174 | const o = Array.from(this.keys()).find(shallowArrayEquals(s)) |
| 37175 | return super.get(o) |
| 37176 | } |
| 37177 | has(s) { |
| 37178 | return -1 !== Array.from(this.keys()).findIndex(shallowArrayEquals(s)) |
nothing calls this directly
no test coverage detected