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
0.7*100 is not 7,is 7.000000000000001
describe('NP.minus', () => { function check(num1, num2, result) { assert.strictEqual(NP.minus(num1, num2), result); }
it('can do minus operation', () => { check(0.07, 0.01, 0.06); }); });
The text was updated successfully, but these errors were encountered:
3e1f681
No branches or pull requests
0.7*100 is not 7,is 7.000000000000001
describe('NP.minus', () => {
function check(num1, num2, result) {
assert.strictEqual(NP.minus(num1, num2), result);
}
it('can do minus operation', () => {
check(0.07, 0.01, 0.06);
});
});
The text was updated successfully, but these errors were encountered: