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
JSON allows numbers to have trailing zeroes to signify the precision of the value. Thus 2.00 is more precise than 2.0. Json-formatter currently discards all trailing zeroes, so 2.00 and 2.0 are both shown as 2.
Is this a limitation of javascript/V8 or would it be possible to retain the precision?
The text was updated successfully, but these errors were encountered:
JSON allows numbers to have trailing zeroes to signify the precision of the value. Thus 2.00 is more precise than 2.0. Json-formatter currently discards all trailing zeroes, so 2.00 and 2.0 are both shown as 2.
Is this a limitation of javascript/V8 or would it be possible to retain the precision?
The text was updated successfully, but these errors were encountered: