(val interface{})
| 373 | } |
| 374 | |
| 375 | func UserStrStripped(val interface{}) string { |
| 376 | return TrimPrefixAndSuffix(UserStr(val), `"`) |
| 377 | } |
| 378 | |
| 379 | func UserStrs(val interface{}) []string { |
| 380 | if val == nil { |
nothing calls this directly
no test coverage detected