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.