DevYK 8466310f0c update README.md 3 years ago
..
test 8466310f0c update README.md 3 years ago
.npmignore 8466310f0c update README.md 3 years ago
History.md 8466310f0c update README.md 3 years ago
Makefile 8466310f0c update README.md 3 years ago
Readme.md 8466310f0c update README.md 3 years ago
component.json 8466310f0c update README.md 3 years ago
index.js 8466310f0c update README.md 3 years ago
package.json 8466310f0c update README.md 3 years ago

Readme.md

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