# normalize-english

> Normalize and clean English for chat-like applications

Latest version **1.0.5** (published 2016-04-11) · MIT license · 0 weekly downloads

## Install

```sh
npm install normalize-english
pnpm add normalize-english
yarn add normalize-english
bun add normalize-english
```

## 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 | 1.0.5 |
| Published | 2016-04-11 |
| First published | 2016-03-29 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Brandon Horst |
| Maintainers | brandonhorst, caroliine |

## Links

- npm: https://www.npmjs.com/package/normalize-english
- Repository: https://github.com/brandonhorst/normalize-english
- Homepage: https://github.com/brandonhorst/normalize-english#readme
- Issues: https://github.com/brandonhorst/normalize-english/issues
- npm.io page: https://npm.io/package/normalize-english

## Recent versions

- 1.0.5 (latest) — 2016-04-11
- 1.0.4 — 2016-04-11
- 1.0.3 — 2016-04-11
- 1.0.2 — 2016-03-30
- 1.0.1 — 2016-03-29
- 1.0.0 — 2016-03-29

## README

# normalize-english
Normalize and clean English for chat-like applications

## Installation

```sh
npm install normalize-english
```

## Usage

```
import {clean} from 'normalize-english'
clean('THAT IS TREW') //-> 'that is true'
```

Based on @silentrob's
[https://www.npmjs.com/package/node-normalizer](node-normalizer)
but with some key differences:
- Data is obtained using `require`, so there is no async load step
- No dependencies on the C++ "RE2" package, so it runs in the browser just fine
- normalize-english performs case normalization
- No `~` tokens are inserted - rather, normal english is inserted for replacements

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