0x4a52466c696e74 8 mesiacov pred
rodič
commit
02d9a9e617
1 zmenil súbory, kde vykonal 8 pridanie a 0 odobranie
  1. 8 0
      json/map.go

+ 8 - 0
json/map.go

@@ -84,6 +84,14 @@ func isType(l, r any) bool {
 	return lType.ConvertibleTo(rType)
 }
 
+func (s Map) IsNil(key string) bool {
+	if iface, check := s[key]; check {
+		return iface == nil
+	}
+	return false
+
+}
+
 func (s Map) IsInt(key string) bool {
 	if iface, check := s[key]; check {
 		return isType(iface, int(0))