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
jnv currently seems to interpret numbers as floating-point. This can be problematic because it means that certain valid JSON values cannot be parsed:
$ echo "1e500" | jnv Error: number out of range at line 1 column 5
Furthermore, it can lead to loss of precision.
A potential solution could be to use hifijson, which would also make the conversion from serde_json::Value into jaq_interpret::Val unnecessary.
serde_json::Value
jaq_interpret::Val
The text was updated successfully, but these errors were encountered:
No branches or pull requests
jnv currently seems to interpret numbers as floating-point. This can be problematic because it means that certain valid JSON values cannot be parsed:
Furthermore, it can lead to loss of precision.
A potential solution could be to use hifijson, which would also make the conversion from
serde_json::Value
intojaq_interpret::Val
unnecessary.The text was updated successfully, but these errors were encountered: