(path string, dir bool)
| 82 | } |
| 83 | |
| 84 | func getKey(path string, dir bool) string { |
| 85 | path = strings.TrimPrefix(path, "/") |
| 86 | if path != "" && dir { |
| 87 | path += "/" |
| 88 | } |
| 89 | return path |
| 90 | } |
| 91 | |
| 92 | var defaultPlaceholderName = ".openlist" |
| 93 |
no outgoing calls
no test coverage detected