mirror of https://github.com/spf13/cast.git
Handling complex cases where input matches expected output
This commit is contained in:
parent
559d57776b
commit
d6ad1120de
6
caste.go
6
caste.go
|
@ -139,6 +139,8 @@ func ToStringMapStringE(i interface{}) (map[string]string, bool) {
|
|||
for k, val := range v {
|
||||
m[ToString(k)] = ToString(val)
|
||||
}
|
||||
case map[string]string:
|
||||
return v, true
|
||||
default:
|
||||
return m, false
|
||||
}
|
||||
|
@ -154,6 +156,8 @@ func ToStringMapE(i interface{}) (map[string]interface{}, bool) {
|
|||
for k, val := range v {
|
||||
m[ToString(k)] = val
|
||||
}
|
||||
case map[string]interface{}:
|
||||
return v, true
|
||||
default:
|
||||
return m, false
|
||||
}
|
||||
|
@ -169,6 +173,8 @@ func ToStringSliceE(i interface{}) ([]string, bool) {
|
|||
for _, u := range v {
|
||||
a = append(a, ToString(u))
|
||||
}
|
||||
case []string:
|
||||
return v, true
|
||||
default:
|
||||
return a, false
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue