-
Notifications
You must be signed in to change notification settings - Fork 614
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Add support for large numbers? #86
Comments
thank you for let me your time and patience
…On Fri, Aug 17, 2018, 1:22 PM charlieman ***@***.***> wrote:
Open a json file with content like this:
{ "id": 12233344445555567 }
And JSONView shows "id": 12233344445555568
I know this might be a problem with the browser's JSON parser itself, but
I wonder if JSONView could, when the number is larger than
Number.MAX_SAFE_INTEGER (2^53 - 1), show it as it comes in the string.
I also found this issue in other json parsers like jq: jqlang/jq#143
<jqlang/jq#143>, they have to allow
operations on the json so it's probably hard to decide what to do in their
case, but JSONView is a viewer.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#86>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AmgHqODGuOsqItyVqKQ4m40sIUEH04n2ks5uRyYFgaJpZM4WCJRk>
.
|
Similarly:
Is displayed as:
|
Yes, I found this problem. Please fix it |
yes it is funny but life ,seam tobe more and more of this stuff going then
i through
…On Mon, Feb 11, 2019 at 1:10 PM tomotomo ***@***.***> wrote:
Yes, I found this problem. Please fix it
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#86 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AmgHqImw5lPOGOMiGR09z4UJoXh0Hf7Uks5vMdxFgaJpZM4WCJRk>
.
--
*john morton*
owner
925-334-9714 | mortonjohn119@gmail.com
goggles
3040 concord blvd
mortonjohn119@gmail.com
<https://www.facebook.com/250830202487002_249995469237142> kiven lick this Read
More <https://www.facebook.com/250830202487002_249995469237142>
"Do not take life too seriously. You will never get out of it alive." -
Elbert Hubbard.
IMPORTANT: The contents of this email and any attachments are confidential.
They are intended for the named recipient(s) only. If you have received
this email by mistake, please notify the sender immediately and do not
disclose the contents to anyone or make copies thereof.
Create your own email signature
<https://www.wisestamp.com/signature-in-email?utm_source=promotion&utm_medium=signature&utm_campaign=create_your_own>
|
This issue is due to the fact that the extension relies on |
This issue will be fixed in the version 0.1.17 by enabling the option "Support 64-bit signed integers". |
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
Open a json file with content like this:
And JSONView shows
"id": 12233344445555568
I know this might be a problem with the browser's JSON parser itself, but I wonder if JSONView could, when the number is larger than
Number.MAX_SAFE_INTEGER
(2^53 - 1
), show it as it comes in the string.I also found this issue in other json parsers like jq: jqlang/jq#143, they have to allow operations on the json so it's probably hard to decide what to do in their case, but JSONView is a viewer so at least showing the number the same way as the string that was parsed should be fine, right?
The text was updated successfully, but these errors were encountered: