Skip to content

Latest commit

 

History

History
25 lines (14 loc) · 329 Bytes

Readme.md

File metadata and controls

25 lines (14 loc) · 329 Bytes

humanize-number

Humanize a number 1000000.99 -> 1,000,000.99

Installation

$ component install component/humanize-number

Example

var humanize = require('humanize-number');

humanize(1000);
// => '1,000'

humanize(1000.55, { delimiter: '.', separator: ',' });
// => '1.000,55'

License

MIT