Yuxiang
Results
1
issues of
Yuxiang
Test code: ``` package main import ( "encoding/json" "github.com/tidwall/gjson" "testing" ) func TestGjson(t *testing.T) { data := `{"id":7328334202200869666}` r := gjson.Parse(data) t.Log("r", r) t.Logf("r.Value() %s", r.Value()) bytes, err := json.Marshal(r.Value())...