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
It would be better to add a feature that allow detecting the number and parsing it with BigInt, like:
// -9007199254740991 ~ 9007199254740991// More precise checking could be used, here's only a demoif(/^-?\d{16,}$/.test(tokenValue)){value=BigInt(tokenValue)}
The text was updated successfully, but these errors were encountered:
Currently, number literal will be parsed by the following code:
It would be better to add a feature that allow detecting the number and parsing it with BigInt, like:
The text was updated successfully, but these errors were encountered: