()
| 69 | } |
| 70 | |
| 71 | func (p localPath) StripSlashes() localPath { |
| 72 | return newLocalPath(stripLeadingSlash(p.file)) |
| 73 | } |
| 74 | |
| 75 | func isRelative(base, target localPath) bool { |
| 76 | relative, err := filepath.Rel(base.String(), target.String()) |
nothing calls this directly
no test coverage detected