npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

bcp-47-normalize

v2.3.0

Published

Normalize, canonicalize, and format BCP 47 tags

Downloads

503,085

Readme

bcp-47-normalize

Build Coverage Downloads Size

Normalize, canonicalize, and format BCP 47 tags.

Contents

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.

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. In Node.js (version 14.14+, 16.0+), install with npm:

npm install bcp-47-normalize

In Deno with esm.sh:

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

In browsers with esm.sh:

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

Use

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:

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.

Parameters
  • tag (string) — BCP 47 tag

  • options.forgiving (boolean, default: false) — passed to bcp-47 as options.forgiving

  • options.warning (Function?, default: undefined) — passed to bcp-47 as options.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 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

Contribute

Yes please! See How to Contribute to Open Source.

License

MIT © Titus Wormer