SafeChars safe chars for storage paths
| 9 | |
| 10 | // SafeChars safe chars for storage paths |
| 11 | type SafeChars interface { |
| 12 | // ShouldEscape indicates if char byte should be escaped |
| 13 | ShouldEscape(c byte) bool |
| 14 | } |
| 15 | |
| 16 | var defaultSafeChars = NewSafeChars("") |
| 17 |
nothing calls this directly
no outgoing calls
no test coverage detected