https://github.com/component/humanize-number
Humanize a number 1000000.99 -> 1,000,000.99
https://github.com/component/humanize-number
Last synced: 5 months ago
JSON representation
Humanize a number 1000000.99 -> 1,000,000.99
- Host: GitHub
- URL: https://github.com/component/humanize-number
- Owner: component
- Created: 2012-09-30T19:59:19.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2013-11-19T18:04:21.000Z (over 12 years ago)
- Last Synced: 2025-08-09T08:20:51.444Z (8 months ago)
- Language: JavaScript
- Size: 104 KB
- Stars: 25
- Watchers: 2
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: Readme.md
- Changelog: History.md
Awesome Lists containing this project
README
# humanize-number
Humanize a number `1000000.99` -> `1,000,000.99`
## Installation
$ component install component/humanize-number
## Example
```js
var humanize = require('humanize-number');
humanize(1000);
// => '1,000'
humanize(1000.55, { delimiter: '.', separator: ',' });
// => '1.000,55'
```
## License
MIT