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
Known jqr bugs:
jqr::jq(c("1", "2"))
jqr::jq(NA_character_)
jqr::jq(c('{"a": 1}', '2'), ".a")
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Known jqr bugs:
jqr::jq(c("1", "2"))
: returns 12 (see jq() paste bare numbers together ropensci/jqr#79)jqr::jq(NA_character_)
: errors (see NA handling ropensci/jqr#78)jqr::jq(c('{"a": 1}', '2'), ".a")
: suppresses error and doesn't return anything for 2nd argument (see Error message suppressed and incorrect result returned ropensci/jqr#80)The text was updated successfully, but these errors were encountered: