(p string)
| 1192 | } |
| 1193 | |
| 1194 | func isUnixAbs(p string) bool { |
| 1195 | return strings.HasPrefix(p, "/") |
| 1196 | } |
| 1197 | |
| 1198 | func isWindowsAbs(p string) bool { |
| 1199 | return paths.IsWindowsAbs(p) |
no outgoing calls
no test coverage detected
searching dependent graphs…