TypeScript CultureInfo and LCIDs
npm install lcids
import { lcids } from 'lcids';
lcids
// ...
//{
// "LCID": 1033,
// "Name": "en-US",
// "DisplayName": "English (United States)",
// "NativeName": "English (United States)"
//},
// ...
`
Use CultureInfo class to create culture info object by name or LCID based on the above array.
`
import { CultureInfo } from 'lcids';
new CultureInfo({ name: "en-US" })
new CultureInfo({ lcid: 1033 })
``