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
The numberFormat function in /src/Gateways/RealexConnector.ts doesn't always parse floats correctly, and needs to do some rounding.
numberFormat
/src/Gateways/RealexConnector.ts
For example: numberFormat(2.28) returns '227.99999999999997' numberFormat(19.76) returns '1976.0000000000002'
numberFormat(2.28)
'227.99999999999997'
numberFormat(19.76)
'1976.0000000000002'
The text was updated successfully, but these errors were encountered:
@saltire HAVE YOU RESOLVED THIS ISSUE. I STUCKED IN THIS
Sorry, something went wrong.
No branches or pull requests
The
numberFormat
function in/src/Gateways/RealexConnector.ts
doesn't always parse floats correctly, and needs to do some rounding.For example:
numberFormat(2.28)
returns'227.99999999999997'
numberFormat(19.76)
returns'1976.0000000000002'
The text was updated successfully, but these errors were encountered: