(s)
| 319 | // reject them. Control characters and blanks are rejected as well |
| 320 | // because nothing good can come from accepting them. |
| 321 | const isBad = (s) => /[^\u0021-\u007F]/u.test(s); |
| 322 | if (patternParts.some(isBad)) |
| 323 | return false; |
| 324 |
nothing calls this directly
no test coverage detected
searching dependent graphs…