Humanize a number 1000000.99
-> 1,000,000.99
$ component install component/humanize-number
var humanize = require('humanize-number');
humanize(1000);
// => '1,000'
humanize(1000.55, { delimiter: '.', separator: ',' });
// => '1.000,55'
MIT
Humanize a number (1000000 -> 1,000,000)
Repository npm JavaScript Download
npm install humanize-number@0.0.2