I'm trying to tackle the issue with JSON.parse() rounding big numbers. I know why this is happening but am looking for away around it.
I was thinking a regex which could parse the JSON text and turn all the big ints into strings.
I'm using JavaScript in a Windows 8 app and its got to be dealt with client side.
Got me stumped so far.
The main issue is I have to do this after I receive the response from an XMLHTTPRequest and cant change the original format of the JSON
e.g
{ "data" : {
"username":"Brad", "userID":941022167561310208, "location":"London"
}
}