# bcp-47-normalize

> Normalize, canonicalize, and format BCP 47 tags

Latest version **2.3.0** (published 2023-07-17) · MIT license · 0 weekly downloads

## Install

```sh
npm install bcp-47-normalize
pnpm add bcp-47-normalize
yarn add bcp-47-normalize
bun add bcp-47-normalize
```

## Health

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

Positive: has types; esm support; no vulnerabilities; high quality score.

Warnings: low downloads.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 2.3.0 |
| Published | 2023-07-17 |
| First published | 2020-02-23 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 2 |
| Unpacked size | 255.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 24 |
| Author | Titus Wormer |
| Maintainers | wooorm |
| Keywords | bcp, 47, bcp47, bcp-47, language, region, script, tag, subtag, format, pretty, normal, canonical |

## Links

- npm: https://www.npmjs.com/package/bcp-47-normalize
- Repository: https://github.com/wooorm/bcp-47-normalize
- Homepage: https://github.com/wooorm/bcp-47-normalize#readme
- Issues: https://github.com/wooorm/bcp-47-normalize/issues
- Funding: https://github.com/sponsors/wooorm
- npm.io page: https://npm.io/package/bcp-47-normalize

## Dependencies (2)

- [bcp-47](https://npm.io/package/bcp-47.md) ^2.0.0
- [bcp-47-match](https://npm.io/package/bcp-47-match.md) ^2.0.0

## Alternatives

- [@openai/codex-sdk](https://npm.io/package/@openai/codex-sdk.md) — 731.4K weekly downloads
- [babel-plugin-transform-react-jsx](https://npm.io/package/babel-plugin-transform-react-jsx.md) — 565.0K weekly downloads
- [babel-helper-remove-or-void](https://npm.io/package/babel-helper-remove-or-void.md) — 508.5K weekly downloads
- [@pnpm/store-controller-types](https://npm.io/package/@pnpm/store-controller-types.md) — 186.9K weekly downloads
- [react-native-signature-canvas](https://npm.io/package/react-native-signature-canvas.md) — 155.6K weekly downloads

## Recent versions

- 2.3.0 (latest) — 2023-07-17
- 2.2.0 — 2022-11-23
- 2.1.0 — 2022-04-12
- 2.0.2 — 2021-11-08
- 2.0.1 — 2021-05-09
- 2.0.0 — 2021-05-09
- 1.1.1 — 2020-10-26
- 1.1.0 — 2020-07-24
- 1.0.0 — 2020-02-23

## README

# bcp-47-normalize

[![Build][build-badge]][build]
[![Coverage][coverage-badge]][coverage]
[![Downloads][downloads-badge]][downloads]
[![Size][size-badge]][size]

Normalize, canonicalize, and format [BCP 47][spec] tags.

## Contents

*   [What is this?](#what-is-this)
*   [When should I use this?](#when-should-i-use-this)
*   [Install](#install)
*   [Use](#use)
*   [API](#api)
    *   [`bcp47Normalize(tag[, options])`](#bcp47normalizetag-options)
*   [Types](#types)
*   [Compatibility](#compatibility)
*   [Security](#security)
*   [Related](#related)
*   [Contribute](#contribute)
*   [License](#license)

## What is this?

This package takes BCP 47 tags and makes them uniform.
It removes unneeded info (`en-us` -> `en`) and replaces deprecated,
overlong, and otherwise unpreferred values with preferred values
(`en-bu` -> `en-MM`).
It works by applying [Unicode CLDR suggestions][alias].

## When should I use this?

You can use this package when dealing with user-provided language tags and want
to normalize and clean them.

## Install

This package is [ESM only][esm].
In Node.js (version 14.14+, 16.0+), install with [npm][]:

```sh
npm install bcp-47-normalize
```

In Deno with [`esm.sh`][esmsh]:

```js
import {bcp47Normalize} from 'https://esm.sh/bcp-47-normalize@2'
```

In browsers with [`esm.sh`][esmsh]:

```html
<script type="module">
  import {bcp47Normalize} from 'https://esm.sh/bcp-47-normalize@2?bundle'
</script>
```

## Use

```js
import {bcp47Normalize} from 'bcp-47-normalize'

const tags = [
  'de-de-1901',
  'en-gb',
  'en-us',
  'en-bu',
  'hy-arevmda',
  'nld-nl',
  'no-nyn',
  'pt-br',
  'pt-pt',
  'zh-hans-cn'
]

tags.forEach((tag) => console.log('%s -> %s', tag, bcp47Normalize(tag)))
```

Yields:

```txt
de-de-1901 -> de-1901
en-gb -> en-GB
en-us -> en
en-bu -> en-MM
hy-arevmda -> hyw
nld-nl -> nl
no-nyn -> nn
pt-br -> pt
pt-pt -> pt-PT
zh-hans-cn -> zh
```

## API

This package exports the identifier `bcp47Normalize`.
There is no default export.

### `bcp47Normalize(tag[, options])`

Normalize the given BCP 47 tag according to [Unicode CLDR suggestions][alias].

###### Parameters

*   `tag` (`string`)
    — BCP 47 tag
*   `options.forgiving` (`boolean`, default: `false`)
    — passed to `bcp-47` as [`options.forgiving`][forgiving]
*   `options.warning` (`Function?`, default: `undefined`)
    — passed to `bcp-47` as [`options.warning`][warning]

    One additional warning is given:

    | code | reason                                                     |
    | :--- | :--------------------------------------------------------- |
    | 7    | Deprecated region `CURRENT`, expected one of `SUGGESTIONS` |

    This warning is only given if the region cannot be automatically fixed (when
    regions split into multiple regions).

###### Returns

Normal, canonical, and pretty [BCP 47][spec] tag (`string`).

## Types

This package is fully typed with [TypeScript][].
It exports the additional types `Options` and `Warning`.

## Compatibility

This package is at least compatible with all maintained versions of Node.js.
As of now, that is Node.js 14.14+ and 16.0+.
It also works in Deno and modern browsers.

## Security

This package is safe.

## Related

*   [`wooorm/bcp-47`](https://github.com/wooorm/bcp-47)
    — parse and stringify BCP 47 language tags
*   [`wooorm/bcp-47-match`](https://github.com/wooorm/bcp-47-match)
    — match BCP 47 language tags with language ranges per RFC 4647
*   [`wooorm/iso-3166`](https://github.com/wooorm/iso-3166)
    — ISO 3166 codes
*   [`wooorm/iso-639-2`](https://github.com/wooorm/iso-639-2)
    — ISO 639-2 codes
*   [`wooorm/iso-639-3`](https://github.com/wooorm/iso-639-3)
    — ISO 639-3 codes
*   [`wooorm/iso-15924`](https://github.com/wooorm/iso-15924)
    — ISO 15924 codes
*   [`wooorm/un-m49`](https://github.com/wooorm/un-m49)
    — UN M49 codes

## Contribute

Yes please!
See [How to Contribute to Open Source][contribute].

## License

[MIT][license] © [Titus Wormer][author]

<!-- Definitions -->

[build-badge]: https://github.com/wooorm/bcp-47-normalize/workflows/main/badge.svg

[build]: https://github.com/wooorm/bcp-47-normalize/actions

[coverage-badge]: https://img.shields.io/codecov/c/github/wooorm/bcp-47-normalize.svg

[coverage]: https://codecov.io/github/wooorm/bcp-47-normalize

[downloads-badge]: https://img.shields.io/npm/dm/bcp-47-normalize.svg

[downloads]: https://www.npmjs.com/package/bcp-47-normalize

[size-badge]: https://img.shields.io/bundlephobia/minzip/bcp-47-normalize.svg

[size]: https://bundlephobia.com/result?p=bcp-47-normalize

[npm]: https://docs.npmjs.com/cli/install

[esmsh]: https://esm.sh

[license]: license

[author]: https://wooorm.com

[esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c

[typescript]: https://www.typescriptlang.org

[contribute]: https://opensource.guide/how-to-contribute/

[spec]: https://tools.ietf.org/rfc/bcp/bcp47.html

[alias]: https://github.com/unicode-org/cldr/blob/142b327/common/supplemental/supplementalMetadata.xml#L32

[forgiving]: https://github.com/wooorm/bcp-47#optionsforgiving

[warning]: https://github.com/wooorm/bcp-47#optionswarning

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