-
-
Notifications
You must be signed in to change notification settings - Fork 943
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(number): adjust hex default #1649
Conversation
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## next #1649 +/- ##
==========================================
- Coverage 99.64% 99.63% -0.02%
==========================================
Files 2221 2221
Lines 240108 240108
Branches 1054 1049 -5
==========================================
- Hits 239261 239236 -25
- Misses 826 851 +25
Partials 21 21
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need a hint in the upgrade docs?
I think no, as this is a new function in v8 and the old is not touched |
While working on
I found that the hex default max are off by 1
We wanted to generate numbers from 0-f and so on, but the +16 instead of +15 generated 0-10 instead