$ cnpm install humanize-number
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
Copyright 2013 - present © cnpmjs.org | Home |