# humanize-number

> Humanize a number (1000000 -> 1,000,000)

Latest version **0.0.2** (published 2013-12-04) · 0 weekly downloads

## Install

```sh
npm install humanize-number
pnpm add humanize-number
yarn add humanize-number
bun add humanize-number
```

## Health

**Score 10/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; low quality score; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.2 |
| Published | 2013-12-04 |
| First published | 2012-11-06 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 25 |
| Maintainers | tjholowaychuk |

## Links

- npm: https://www.npmjs.com/package/humanize-number
- Repository: https://github.com/component/humanize-number
- Issues: https://github.com/component/humanize-number/issues
- npm.io page: https://npm.io/package/humanize-number

## Recent versions

- 0.0.2 (latest) — 2013-12-04
- 0.0.1 — 2012-11-06

## 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

---
_Source: https://npm.io/package/humanize-number · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
