TrimCurrentPrefix removes a leading prefix of "./" or ".\" (referring to the current directory in a platform independent manner). It is useful for callers such as "git lfs track" and "git lfs untrack", that wish to compare filepaths and/or attributes patterns without cleaning across multiple platfo
(p string)
| 521 | // wish to compare filepaths and/or attributes patterns without cleaning across |
| 522 | // multiple platforms. |
| 523 | func TrimCurrentPrefix(p string) string { |
| 524 | if strings.HasPrefix(p, windowsPrefix) { |
| 525 | return strings.TrimPrefix(p, windowsPrefix) |
| 526 | } |
| 527 | return strings.TrimPrefix(p, nixPrefix) |
| 528 | } |
no outgoing calls
no test coverage detected