We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"" (empty string) is the JSON pointer pointing to the root of a document.
""
This code fails with error invalid character 'u' looking for beginning of value. Check on the Go Playground.
invalid character 'u' looking for beginning of value
package main import ( "testing" "github.com/lestrrat-go/jsonptr" ) func TestGet(t *testing.T) { doc, err := jsonptr.Parse([]byte(`null`)) if err != nil { t.Error("valid doc") } var v any err = doc.Unmarshal("", &v) if err != nil { t.Errorf("valid pointer but got error: %q", err) } if v != nil { t.Error("null expected") } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
""
(empty string) is the JSON pointer pointing to the root of a document.This code fails with error
invalid character 'u' looking for beginning of value
. Check on the Go Playground.The text was updated successfully, but these errors were encountered: