
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
bcp-47-normalize
Advanced tools
Normalize, canonicalize, and format BCP 47 tags.
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.
You can use this package when dealing with user-provided language tags and want to normalize and clean them.
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>
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
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.
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).
Normal, canonical, and pretty BCP 47 tag (string
).
This package is fully typed with TypeScript.
It exports the additional types Options
and Warning
.
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.
This package is safe.
wooorm/bcp-47
— parse and stringify BCP 47 language tagswooorm/bcp-47-match
— match BCP 47 language tags with language ranges per RFC 4647wooorm/iso-3166
— ISO 3166 codeswooorm/iso-639-2
— ISO 639-2 codeswooorm/iso-639-3
— ISO 639-3 codeswooorm/iso-15924
— ISO 15924 codeswooorm/un-m49
— UN M49 codesYes please! See How to Contribute to Open Source.
FAQs
Normalize, canonicalize, and format BCP 47 tags
The npm package bcp-47-normalize receives a total of 165,046 weekly downloads. As such, bcp-47-normalize popularity was classified as popular.
We found that bcp-47-normalize demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
/Security News
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.