0x4a52466c696e74 il y a 2 ans
Parent
commit
82cf8f39a9
2 fichiers modifiés avec 5 ajouts et 0 suppressions
  1. 3 0
      json/map.go
  2. 2 0
      json/z_test.go

+ 3 - 0
json/map.go

@@ -75,6 +75,9 @@ func val(l, r interface{}) (res reflect.Value) {
 }
 
 func isType(l, r any) bool {
+	if l == nil || r == nil {
+		return false
+	}
 	rType := reflect.ValueOf(r).Type()
 	lType := reflect.ValueOf(l).Type()
 	//log.Println(rType, lType, reflect.ValueOf(iface).Convert(rType))

+ 2 - 0
json/z_test.go

@@ -15,6 +15,7 @@ func TestJSON(t *testing.T) {
 		"m1":   Map{"one": 1},
 		"m2":   map[string]interface{}{"one": 2},
 		"fl":   1e12,
+		"null": nil,
 	}
 	t.Log(m, string(m.JSON()))
 	t.Log(string(m.ValueJSON("jsrc", []byte{})))
@@ -25,6 +26,7 @@ func TestJSON(t *testing.T) {
 	t.Log(string(m.JSONIndent("", "\t")))
 	t.Log(m.StringVal("fl", ""))
 	t.Log("ISINT", m.IsInt("fl"))
+	t.Log("ISINT", m.IsInt("null"))
 }
 
 func TestInterface(t *testing.T) {