(re, str)
| 799 | } |
| 800 | } |
| 801 | function matchAll(re, str) { |
| 802 | let match; |
| 803 | const matches = []; |
| 804 | while ((match = re.exec(str))) { |
| 805 | matches.push(match); |
| 806 | } |
| 807 | return matches; |
| 808 | } |
| 809 | if (typeof searchValue !== 'string' && searchValue.global) { |
| 810 | const matches = matchAll(searchValue, this.original); |
| 811 | matches.forEach((match) => { |
nothing calls this directly
no outgoing calls
no test coverage detected