0x4a52466c696e74 hace 2 años
padre
commit
f95cd526d4
Se han modificado 1 ficheros con 7 adiciones y 0 borrados
  1. 7 0
      json/map.go

+ 7 - 0
json/map.go

@@ -160,6 +160,13 @@ func (s Map) String(key, defaultVal string) string {
 	return defaultVal
 }
 
+func (s Map) Bytes(key, defaultVal []byte) []byte {
+	if iface, check := s[key]; check {
+		return []byte(val(iface, defaultVal).String())
+	}
+	return defaultVal
+}
+
 func (s Map) StringVal(key, defaultVal string) string {
 	if iface, check := s[key]; check {
 		return fmt.Sprint(iface)