UNPKG
@box/cldr-data
Version:
latest (45.0.0)
45.0.0
44.0.1
44.0.0
41.0.1
41.0.0
34.8.0
34.7.1
34.7.0
34.6.1
34.6.0
34.5.0
34.4.1
34.2.0
34.1.0
34.0.0
CLDR Data that box-ui-elements and other Box code needs
developer.box.com/docs/box-ui-elements
@box/cldr-data
/
src
/
index.ts
11 lines
(8 loc)
•
274 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
/** * Load the box cldr locale data for a particular locale. * */
import
{
LocaleData
}
from
'../types'
;
export
default
function
loadLocaleData
(
locale: string
):
Promise
<
LocaleData
> {
return
import
(
`../locale-data/
${locale}
.ts`
).
then
(
(
module
) =>
module
.
default
); }