(...args: unknown[])
| 132 | }, |
| 133 | |
| 134 | includes(...args: unknown[]) { |
| 135 | return searchProxy(this, 'includes', args) |
| 136 | }, |
| 137 | |
| 138 | indexOf(...args: unknown[]) { |
| 139 | return searchProxy(this, 'indexOf', args) |
nothing calls this directly
no test coverage detected