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
First of all, thank you very much for this amazing library.
I want to report the issue with decimal round as following (tested on demo)
574.425 should be rounded to 574.43 same as 574.415 is rounded to 574.42 but 574.425 is being rounded to 574.42. I have tested it on demo here
574.425
574.43
574.415
574.42
Thank you
The text was updated successfully, but these errors were encountered:
Looks like it's probably checking the 3rd decimal spot to be anything greater than 5 instead of greater than or equal to 5.
574.4250000000001 will produce 574.43 for example. Not sure if that helps at all but thought I'd throw it out there.
Sorry, something went wrong.
Does anyone else solve the problem of this library
No branches or pull requests
First of all, thank you very much for this amazing library.
I want to report the issue with decimal round as following (tested on demo)
574.425
should be rounded to574.43
same as574.415
is rounded to574.42
but574.425
is being rounded to574.42
. I have tested it on demo hereThank you
The text was updated successfully, but these errors were encountered: