brandonwang15
Results
1
issues of
brandonwang15
### Toy code: Run in playground: https://go.dev/play/p/XGfPuf_Px8a ``` j := jsondiff.DefaultJSONOptions() a := `{"foo":null}` b := `{"foo":["bar"]}` _, diff := jsondiff.Compare([]byte(a), []byte(b), &j) fmt.Println("comparing null to array is broken") fmt.Println(diff)...