DevYK 8466310f0c update README.md 3 лет назад
..
test 8466310f0c update README.md 3 лет назад
.npmignore 8466310f0c update README.md 3 лет назад
History.md 8466310f0c update README.md 3 лет назад
Makefile 8466310f0c update README.md 3 лет назад
Readme.md 8466310f0c update README.md 3 лет назад
component.json 8466310f0c update README.md 3 лет назад
index.js 8466310f0c update README.md 3 лет назад
package.json 8466310f0c update README.md 3 лет назад

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