openexchangerates / accounting.js

A lightweight JavaScript library for number, money and currency formatting - fully localisable, zero dependencies.
http://openexchangerates.github.io/accounting.js
MIT License
4.95k stars 528 forks source link

How to block accounting.formatMoney() rounding #203

Open sauliko opened 5 years ago

sauliko commented 5 years ago

Hi

I'm using accounting.formatMoney() function. I want to write a number as € 1,119 but it's rounding 1,120 how to disable this ?

accounting.formatMoney(1,119, '€', 3, '.', ',');

Thanks

zdanowiczkonrad commented 5 years ago

This lib is not maintained. Please refer to my lightweight alternative that supports all that: https://github.com/zdanowiczkonrad/number-currency-format - look for the showDecimals: "AS_IS" option.