Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

locale-enum

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

locale-enum

A TypeScript enum of all locales, such as "en-US".

  • 1.1.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
12K
increased by53.14%
Maintainers
1
Weekly downloads
 
Created
Source

TypeScript Locale Enum

A TypeScript enum containing all locales, such as en-US or zh-Hant-HK. Uses mixed-case strings for locales (en-US, not en-us). Contains 495 locales.

Install:

npm i --save locale-enum

Use:

const Locale = require('locale-enum');
console.log(Locale.en_US); // "en-US"

Import using import:

import { Locale } from 'locale-enum';
console.log(Locale.fr_FR); // "fr-FR"

How about JavaScript?

You can use this in JavaScript too, this is especially handy if your IDE supports code completion.

const { Locale } = require('locale-enum');
console.log(Locale.pt_BR); // "pt-BR"

Note: the enum keys use underscores, while string values use dashes.

Pull requests and comments are welcome at the GitHub repo.

Keywords

FAQs

Package last updated on 14 Jul 2020

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc