An open API service indexing awesome lists of open source software.

https://github.com/knutkirkhorn/remove-commas

Remove all commas in a string
https://github.com/knutkirkhorn/remove-commas

cli cli-app command-line nodejs terminal

Last synced: 3 months ago
JSON representation

Remove all commas in a string

Awesome Lists containing this project

README

          

# remove-commas

> Remove all commas in a string

When you need to remove those pesky commas from a string.

## CLI

If no input is provided, the input will be read from the clipboard.

### Installation

```sh
npm install --global remove-commas
```

### Usage

```
$ remove-commas --help

Usage
$ remove-commas
$ remove-commas

Examples
$ remove-commas 1,333,337
```

## API

### Installation

```sh
npm install remove-commas
```

### Usage

```js
import removeCommas from 'remove-commas';

console.log(removeCommas('1,333,337'));
// => 1333337
```