Parcourir la source

json map byte getter

0x4a52466c696e74 il y a 10 mois
Parent
commit
556a9c69c9
1 fichiers modifiés avec 7 ajouts et 0 suppressions
  1. 7 0
      json/map.go

+ 7 - 0
json/map.go

@@ -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 {