Open gastrodon opened 4 years ago
Hello,
Given the following json
{ "adminIdList": [1313962888790700032] }
If I highlight this and use the command pallete in atom to sort the data, I'll get back the following
{ "adminIdList": [ 1313962888790700000 ] }
Upon further inspection, this number is 61 bits wide, but JS can only handle 53 bit integers per this
61
Might it be possible to load all integer keys as strings? This should preserve sorting order, while allowing large numbers to be represented
Hello,
Given the following json
If I highlight this and use the command pallete in atom to sort the data, I'll get back the following
Upon further inspection, this number is
61
bits wide, but JS can only handle 53 bit integers per thisMight it be possible to load all integer keys as strings? This should preserve sorting order, while allowing large numbers to be represented