IsSet checks to see if the key has been set in any of the data locations. IsSet is case-insensitive for a key.
(key string)
| 1387 | // IsSet checks to see if the key has been set in any of the data locations. |
| 1388 | // IsSet is case-insensitive for a key. |
| 1389 | func IsSet(key string) bool { return v.IsSet(key) } |
| 1390 | |
| 1391 | func (v *Viper) IsSet(key string) bool { |
| 1392 | lcaseKey := strings.ToLower(key) |