|
пре 3 година | |
---|---|---|
.. | ||
test | пре 3 година | |
.npmignore | пре 3 година | |
History.md | пре 3 година | |
Makefile | пре 3 година | |
Readme.md | пре 3 година | |
component.json | пре 3 година | |
index.js | пре 3 година | |
package.json | пре 3 година |
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