totaljs / framework4

Total.js framework v4
https://www.totaljs.com
Other
97 stars 36 forks source link

Fixed number rounding in `NP.VAT()` in use 0% VAT #3

Closed tomee03 closed 4 years ago

tomee03 commented 4 years ago

var n1 = 10.948283; var n2 = 0.43333421; var n3 = 5;

console.log(n1.VAT(0, 2)); console.log(n2.VAT(20, 2)); console.log(n3.VAT(20, 2));

// New 10.95 0.36 4.17

// Old 10.948283 0.36 4.17