# comma-format-package

> A simple utilty library for format comma

Latest version **3.2.7** (published 2023-11-08) · ISC license · 0 weekly downloads

## Install

```sh
npm install comma-format-package
pnpm add comma-format-package
yarn add comma-format-package
bun add comma-format-package
```

## Health

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

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 3.2.7 |
| Published | 2023-11-08 |
| First published | 2023-10-25 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 1.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | jws |
| Maintainers | jay_ws |
| Keywords | comma, number, format |

## Links

- npm: https://www.npmjs.com/package/comma-format-package
- npm.io page: https://npm.io/package/comma-format-package

## Alternatives

- [random-seedable](https://npm.io/package/random-seedable.md) — 27.9K weekly downloads
- [n2words](https://npm.io/package/n2words.md) — 22.2K weekly downloads
- [@stdlib/math-base-special-factorialln](https://npm.io/package/@stdlib/math-base-special-factorialln.md) — 5.7K weekly downloads
- [@stdlib/math-base-special-abs2](https://npm.io/package/@stdlib/math-base-special-abs2.md) — 1.7K weekly downloads
- [commons-math-interpolation](https://npm.io/package/commons-math-interpolation.md) — 1.4K weekly downloads

## Recent versions

- 3.2.7 (latest) — 2023-11-08
- 3.2.6 — 2023-10-30
- 3.2.5 — 2023-10-30
- 3.2.4 — 2023-10-30
- 3.2.3 — 2023-10-30
- 3.2.2 — 2023-10-30
- 3.2.1 — 2023-10-30
- 3.2.0 — 2023-10-30
- 3.1.1 — 2023-10-26
- 3.1.0 — 2023-10-26
- 3.0.1 — 2023-10-26
- 3.0.0 — 2023-10-25
- 2.0.0 — 2023-10-25
- 1.0.0 — 2023-10-25

## README

## Installation

### NPM

JavaScript Comma supports [npm](https://www.npmjs.com/package/comma-format-package) under the name `comma-format-package`.

```bash
npm i comma-format-package
```

## Usage

```javascript
// Basic Use - comma format
import addComma  from "comma-format-package";

## Examples
```vue 3
<template>
  <div id="app">
    <div v-html="formatComma"></div>
  </div>
</template>

<script>
import { defineComponent, ref } from 'vue'
import addComma  from "comma-format-package";

export default defineComponent({
  setup() {
    const number = ref(10000000)
    const formatComma = ref(null)
    formatComma.value = addComma(number.value)
    return {
      formatComma
    };
  }
})
</script>

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