Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

format-currency-to-br

brunoti99MIT1.0.0

A simple function to transform a valid float number like "2322.23" to the a masked string like the brazilian currency "R$ 2.322,23".

i18n, brasil, brazil, dinheiro, unmask, currency

readme

Format Float to Brazilian Currency

This is a plugin to transform a number like this:

123123.12

To a masked string like this:

R$ 1.231.23,12

Install

With npm:

npm install --save format-currency-to-br

With bower:

bower install --save format-currency-to-br

Or you can just download a ZIP.

Setup

Node or Browserify
var formatCurrencyToBr = require('format-currency.to-br');
Browser (Global)
<script src="format-currency.to-br.js"></script>

Usage

var price = 2839039.38;

console.log(formatCurrencytoBr(price)); // Will return: 'R$ 2.839.039,38'

License

MIT