We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Actual: BigNumber.minimum(0, -0) is 0
BigNumber.minimum(0, -0)
0
Expected BigNumber.minimum(0, -0) is -0
-0
Interesting that BigNumber.minimum(-0, 0) works just expected (-0)
BigNumber.minimum(-0, 0)
Online exampe
The text was updated successfully, but these errors were encountered:
Good find. I should have had a test case checking that. No doubt maximum has the same issue. I'll apply a fix presently. Thank you for the report.
maximum
Sorry, something went wrong.
[BUGFIX] #344 minumum(0, -0) should be -0
minumum(0, -0)
981a8a9
Fixed in v9.1.2.
No branches or pull requests
Actual:
BigNumber.minimum(0, -0)
is0
Expected
BigNumber.minimum(0, -0)
is-0
Interesting that
BigNumber.minimum(-0, 0)
works just expected (-0
)Online exampe
The text was updated successfully, but these errors were encountered: