A lightweight and simple plugin to convert number to money format.
npm install number-to-money
or
yarn add number-to-money
Simply use toMoney
function to convert any number to money format. You'll need to add manually the currency. This plugin will add it automatically in future releases.
import toMoney from 'number-to-money';
const number = 3000000.3;
const moneyFormat = toMoney(number);
console.log(moneyFormat);
3,000,000.30
Donations are greatly appreciated!