Open georgeben opened 1 year ago
Hello, it seems currencyjs automatically rounds up values by default. Is there a way to turn this off?
currency(53).divide(549) //Outputs 0.1 rather than 0.09
I still want the default precision of 2 without rounding. Thank you
currency(1.99).divide(10) should output 0.19 but it gives 0.2. An urgent fix is required.
currency(1.99).divide(10)
0.19
0.2
Hello, it seems currencyjs automatically rounds up values by default. Is there a way to turn this off?
I still want the default precision of 2 without rounding. Thank you