1.0.0 • Published 8 years ago

format-currency-to-br v1.0.0

Weekly downloads
201
License
MIT
Repository
-
Last release
8 years ago

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