(value string)
| 397 | } |
| 398 | |
| 399 | func nonEmptyString(value string) (string, bool) { |
| 400 | return value, value != "" |
| 401 | } |
| 402 | |
| 403 | func sameDropboxPath(a string, b string) bool { |
| 404 | return strings.EqualFold(cleanDropboxPath(a), cleanDropboxPath(b)) |
no outgoing calls
no test coverage detected