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
{{ message }}
This repository has been archived by the owner on Apr 6, 2020. It is now read-only.
Don't know if this is something worth mentioning in the readme, but if the id param is coerced into a number with app.param('id', Number); then they need to make sure that the id is always less than 9007199254740992, which is javascript's maxint.
Don't know if this is something worth mentioning in the readme, but if the id param is coerced into a number with
app.param('id', Number);
then they need to make sure that the id is always less than9007199254740992
, which is javascript's maxint.Any ids greater than maxint would need to be handled with a lib like substack's https://github.com/substack/node-bigint
The text was updated successfully, but these errors were encountered: