(s string)
| 198 | } |
| 199 | |
| 200 | func hasNonASCII(s string) bool { |
| 201 | return strings.IndexFunc(s, func(r rune) bool { return r > 127 }) >= 0 |
| 202 | } |
| 203 | |
| 204 | // flagShape matches the leading flag token, stripping any trailing junk such as |
| 205 | // a "=value" suffix or punctuation that bled in from the surrounding markdown |
no outgoing calls
no test coverage detected