JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 22041
  • Score
    100M100P100Q135484F
  • License Unlicense

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

Package Exports

  • locale-enum

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (locale-enum) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

#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.