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

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