UNPKG

comma-it

Version:

Node.js module convert numbers to amounts

27 lines (17 loc) 578 B
Comma-It.js =========== [![Build status](https://travis-ci.org/AvnerCohen/comma-it.png)](https://travis-ci.org/AvnerCohen/comma-it) Tiny module to turn numbers into a more readble amounts by adding commas: > 1234.5 => 1,234.50 ```js //require it var commaIt = require('../comma-it'); ``` ```js commaIt( '12341233,12', {addPrecision:true}); // => '12 341 233,12' ``` Custom seperators: ```js commaIt('12341233.12', {addPrecision:true, thousandSeperator : ',', decimalSeperator : '.'}); // => 12,341,233.12' ``` [@avnerner](https://www.twitter.com/avnerner "@avnerner")