corrade-nucleus-nucleons – Blame information for rev 38

Subversion Repositories:
Rev:
Rev Author Line No. Line
38 office 1 //! moment.js
2 //! version : 2.18.1
3 //! authors : Tim Wood, Iskren Chernev, Moment.js contributors
4 //! license : MIT
5 //! momentjs.com
6  
7 import { hooks as moment, setHookCallback } from './lib/utils/hooks';
8  
9 moment.version = '2.18.1';
10  
11 import {
12 min,
13 max,
14 now,
15 isMoment,
16 momentPrototype as fn,
17 createUTC as utc,
18 createUnix as unix,
19 createLocal as local,
20 createInvalid as invalid,
21 createInZone as parseZone
22 } from './lib/moment/moment';
23  
24 import {
25 getCalendarFormat
26 } from './lib/moment/calendar';
27  
28 import {
29 defineLocale,
30 updateLocale,
31 getSetGlobalLocale as locale,
32 getLocale as localeData,
33 listLocales as locales,
34 listMonths as months,
35 listMonthsShort as monthsShort,
36 listWeekdays as weekdays,
37 listWeekdaysMin as weekdaysMin,
38 listWeekdaysShort as weekdaysShort
39 } from './lib/locale/locale';
40  
41 import {
42 isDuration,
43 createDuration as duration,
44 getSetRelativeTimeRounding as relativeTimeRounding,
45 getSetRelativeTimeThreshold as relativeTimeThreshold
46 } from './lib/duration/duration';
47  
48 import { normalizeUnits } from './lib/units/units';
49  
50 import isDate from './lib/utils/is-date';
51  
52 setHookCallback(local);
53  
54 moment.fn = fn;
55 moment.min = min;
56 moment.max = max;
57 moment.now = now;
58 moment.utc = utc;
59 moment.unix = unix;
60 moment.months = months;
61 moment.isDate = isDate;
62 moment.locale = locale;
63 moment.invalid = invalid;
64 moment.duration = duration;
65 moment.isMoment = isMoment;
66 moment.weekdays = weekdays;
67 moment.parseZone = parseZone;
68 moment.localeData = localeData;
69 moment.isDuration = isDuration;
70 moment.monthsShort = monthsShort;
71 moment.weekdaysMin = weekdaysMin;
72 moment.defineLocale = defineLocale;
73 moment.updateLocale = updateLocale;
74 moment.locales = locales;
75 moment.weekdaysShort = weekdaysShort;
76 moment.normalizeUnits = normalizeUnits;
77 moment.relativeTimeRounding = relativeTimeRounding;
78 moment.relativeTimeThreshold = relativeTimeThreshold;
79 moment.calendarFormat = getCalendarFormat;
80 moment.prototype = fn;
81  
82 export default moment;