Could we get a function to just return the string type instead of a byte slice?
I often just need the string and noticed GetStringByte is actually converting the underlying string to a byte.
func (v *Value) GetString(keys ...string) string {
v = v.Get(keys...)
if v == nil || v.Type() != TypeString {
return ""
}
return v.s
}