format-thousands
v2.0.0
Published
Format thousands with custom separator: 1 000 000
Downloads
29,103
Maintainers
Readme
format-thousands
Format thousands with custom separator: 1 000 000
Demo: vovanr.github.io/format-thousands
Install
npm install --save format-thousands
Usage
var formatThousands = require('format-thousands');
formatThousands(1000);
//=> '1 000'
formatThousands(5000, {formatFourDigits: false});
//=> '5000'
formatThousands(1000000, '`');
//=> '1`000`000'
formatThousands(10000, {separator: "'"});
//=> "10'000"
formatThousands(-100000);
//=> "-100 000"
formatThousands(10000.0001)
//=> "10 000.0001"
formatThousands();
//=> ''
License
MIT © Vladimir Rodkin