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"Note: the enum keys use underscores, while string values use dashes.
Pull requests and comments are welcome at the GitHub repo.