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
JSON3.read
julia> JSON3.read("""true::[[[}}{sdfg""") true julia> JSON3.read("""1::[[[}}{sdfg""") 1 julia> JSON3.read(""""hi"::[[[}}{sdfg""") "hi"
JSON errors instead, which I feel is more sensible:
JSON
julia> JSON.parse("""true::[[[}}{sdfg""") ERROR: Expected end of input Line: 0 Around: ...true::[[[}}{sdfg... ^ julia> JSON.parse("""1::[[[}}{sdfg""") ERROR: Expected end of input Line: 0 Around: ...1::[[[}}{sdfg... ^ julia> JSON.parse(""""hi"::[[[}}{sdfg""") ERROR: Expected end of input Line: 0 Around: ..."hi"::[[[}}{sdfg...
After read! there's a call to getvalue:
read!
getvalue
JSON3.jl/src/read.jl
Line 69 in b23ad48
The text was updated successfully, but these errors were encountered:
No branches or pull requests
JSON
errors instead, which I feel is more sensible:After
read!
there's a call togetvalue
:JSON3.jl/src/read.jl
Line 69 in b23ad48
The text was updated successfully, but these errors were encountered: