| 8 | } |
| 9 | |
| 10 | interface RegExpMatchAll extends Array<string | null> { |
| 11 | index?: number; |
| 12 | input?: string; |
| 13 | groups: Record<string, string> | undefined; |
| 14 | } |
| 15 | |
| 16 | String.prototype.matchRE2JS = function (o: RE2JS): Array<string> | null { |
| 17 | let results: string[] | null = null; |
nothing calls this directly
no outgoing calls
no test coverage detected