Unnormalize unnormalizes the given path. This calls filepath.FromSlash on the path. If the path is "", this returns "".
(path string)
| 138 | // This calls filepath.FromSlash on the path. |
| 139 | // If the path is "", this returns "". |
| 140 | func Unnormalize(path string) string { |
| 141 | return filepath.FromSlash(path) |
| 142 | } |
| 143 | |
| 144 | // Base is equivalent to filepath.Base. |
| 145 | // |
no outgoing calls
searching dependent graphs…