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
+1
Max signed 64 bit int: 2**63-1 == 9223372036854775807
If 9223372036854775807 is in the JSON file and then sorted it gets silently changed to 9223372036854776000 which would overflow.
A work around if you do not care about the full range is to use 9223372036854775000 which does not get modified.
how to reproduce:
i guess it is about the accuracy problem in js
The text was updated successfully, but these errors were encountered: