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
This code parses all number-looking values as numbers. However, if the number is too large, it gets parsed as a different number. For example, 1735778230747959786 is parsed as 1735778230747959800.
The text was updated successfully, but these errors were encountered:
Did this affect something you were using Minimist for @gilbert , or rather you found the possibility of a lossy conversion?
The work-around for a false positive with a string of digits being inappropriately converted to a number is to specify the option is a string. This can also be done for positionals: #52.
This code parses all number-looking values as numbers. However, if the number is too large, it gets parsed as a different number. For example,
1735778230747959786
is parsed as1735778230747959800
.The text was updated successfully, but these errors were encountered: