(char byte)
| 145 | } |
| 146 | |
| 147 | func IsVolumeCharacter(char byte) bool { |
| 148 | return char >= 'a' && char <= 'z' || char >= 'A' && char <= 'Z' |
| 149 | } |
| 150 | |
| 151 | func getFileUrlVolumeSeparatorEnd(url string, start int) int { |
| 152 | if len(url) <= start { |
no outgoing calls
no test coverage detected