Brought in another asset for Ray's eye form: moment
[openemr.git] / public / assets / moment-2-13-0 / src / lib / locale / locale.js
blobac9cebfb824997a5384048ca913fca24b32ee493
1 // Side effect imports
2 import './prototype';
4 import {
5     getSetGlobalLocale,
6     defineLocale,
7     updateLocale,
8     getLocale,
9     listLocales
10 } from './locales';
12 import {
13     listMonths,
14     listMonthsShort,
15     listWeekdays,
16     listWeekdaysShort,
17     listWeekdaysMin
18 } from './lists';
20 export {
21     getSetGlobalLocale,
22     defineLocale,
23     updateLocale,
24     getLocale,
25     listLocales,
26     listMonths,
27     listMonthsShort,
28     listWeekdays,
29     listWeekdaysShort,
30     listWeekdaysMin
33 import { deprecate } from '../utils/deprecate';
34 import { hooks } from '../utils/hooks';
36 hooks.lang = deprecate('moment.lang is deprecated. Use moment.locale instead.', getSetGlobalLocale);
37 hooks.langData = deprecate('moment.langData is deprecated. Use moment.localeData instead.', getLocale);
39 import './en';