0x4a52466c696e74 il y a 8 mois
Parent
commit
02d9a9e617
1 fichiers modifiés avec 8 ajouts et 0 suppressions
  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))