|
@@ -98,6 +98,13 @@ func (s Map) IsBoolean(key string) bool {
|
|
|
return false
|
|
|
}
|
|
|
|
|
|
+func (s Map) Byte(key string, defaultVal byte) byte {
|
|
|
+ if iface, check := s[key]; check {
|
|
|
+ return byte(val(iface, defaultVal).Int())
|
|
|
+ }
|
|
|
+ return defaultVal
|
|
|
+}
|
|
|
+
|
|
|
// Int returns int64 value by key.
|
|
|
// If key isn't defined will be returned defaultVal arg value
|
|
|
func (s Map) Int(key string, defaultVal int64) int64 {
|