(input string)
| 213 | } |
| 214 | |
| 215 | func isASCII(input string) bool { |
| 216 | for _, r := range input { |
| 217 | if r > 127 { |
| 218 | return false |
| 219 | } |
| 220 | } |
| 221 | return true |
| 222 | } |
| 223 | |
| 224 | type stringStatistics struct { |
| 225 | digitCount int |
no outgoing calls
no test coverage detected