scurker / currency.js

A javascript library for handling currencies
https://currency.js.org
MIT License
3.19k stars 143 forks source link

How to turn off rounding #438

Open georgeben opened 1 year ago

georgeben commented 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

kumardeepakme commented 1 year ago

currency(1.99).divide(10) should output 0.19 but it gives 0.2. An urgent fix is required.