You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
https://www.npmjs.com/package/json-bigint
Having issues with showing the BigInt on the Json View. The value is getting converted to Float and then it is losing the precision for the last 3 digits making the last 3 digits as 000
{ "value" : 9223372036854775807}, for example, is still a valid RFC4627 JSON string, and in most JS runtimes the result of JSON.parse is this object: { value: 9223372036854776000 }
The text was updated successfully, but these errors were encountered:
https://www.npmjs.com/package/json-bigint
Having issues with showing the BigInt on the Json View. The value is getting converted to Float and then it is losing the precision for the last 3 digits making the last 3 digits as 000
{ "value" : 9223372036854775807}, for example, is still a valid RFC4627 JSON string, and in most JS runtimes the result of JSON.parse is this object: { value: 9223372036854776000 }
The text was updated successfully, but these errors were encountered: