-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcdn.js
More file actions
6598 lines (5667 loc) · 232 KB
/
Copy pathcdn.js
File metadata and controls
6598 lines (5667 loc) · 232 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
function ownKeys(e, r) {var t = Object.keys(e);if (Object.getOwnPropertySymbols) {var o = Object.getOwnPropertySymbols(e);r && (o = o.filter(function (r) {return Object.getOwnPropertyDescriptor(e, r).enumerable;})), t.push.apply(t, o);}return t;}function _objectSpread(e) {for (var r = 1; r < arguments.length; r++) {var t = null != arguments[r] ? arguments[r] : {};r % 2 ? ownKeys(Object(t), !0).forEach(function (r) {_defineProperty(e, r, t[r]);}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) {Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));});}return e;}function _createForOfIteratorHelper(o, allowArrayLike) {var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"];if (!it) {if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") {if (it) o = it;var i = 0;var F = function F() {};return { s: F, n: function n() {if (i >= o.length) return { done: true };return { done: false, value: o[i++] };}, e: function e(_e) {throw _e;}, f: F };}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");}var normalCompletion = true,didErr = false,err;return { s: function s() {it = it.call(o);}, n: function n() {var step = it.next();normalCompletion = step.done;return step;}, e: function e(_e2) {didErr = true;err = _e2;}, f: function f() {try {if (!normalCompletion && it.return != null) it.return();} finally {if (didErr) throw err;}} };}function _callSuper(t, o, e) {return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e));}function _possibleConstructorReturn(self, call) {if (call && (_typeof(call) === "object" || typeof call === "function")) {return call;} else if (call !== void 0) {throw new TypeError("Derived constructors may only return object or undefined");}return _assertThisInitialized(self);}function _assertThisInitialized(self) {if (self === void 0) {throw new ReferenceError("this hasn't been initialised - super() hasn't been called");}return self;}function _isNativeReflectConstruct() {try {var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {}));} catch (t) {}return (_isNativeReflectConstruct = function _isNativeReflectConstruct() {return !!t;})();}function _getPrototypeOf(o) {_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) {return o.__proto__ || Object.getPrototypeOf(o);};return _getPrototypeOf(o);}function _inherits(subClass, superClass) {if (typeof superClass !== "function" && superClass !== null) {throw new TypeError("Super expression must either be null or a function");}subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } });Object.defineProperty(subClass, "prototype", { writable: false });if (superClass) _setPrototypeOf(subClass, superClass);}function _setPrototypeOf(o, p) {_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) {o.__proto__ = p;return o;};return _setPrototypeOf(o, p);}function _classCallCheck(instance, Constructor) {if (!(instance instanceof Constructor)) {throw new TypeError("Cannot call a class as a function");}}function _defineProperties(target, props) {for (var i = 0; i < props.length; i++) {var descriptor = props[i];descriptor.enumerable = descriptor.enumerable || false;descriptor.configurable = true;if ("value" in descriptor) descriptor.writable = true;Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor);}}function _createClass(Constructor, protoProps, staticProps) {if (protoProps) _defineProperties(Constructor.prototype, protoProps);if (staticProps) _defineProperties(Constructor, staticProps);Object.defineProperty(Constructor, "prototype", { writable: false });return Constructor;}function _defineProperty(obj, key, value) {key = _toPropertyKey(key);if (key in obj) {Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true });} else {obj[key] = value;}return obj;}function _toPropertyKey(t) {var i = _toPrimitive(t, "string");return "symbol" == _typeof(i) ? i : String(i);}function _toPrimitive(t, r) {if ("object" != _typeof(t) || !t) return t;var e = t[Symbol.toPrimitive];if (void 0 !== e) {var i = e.call(t, r || "default");if ("object" != _typeof(i)) return i;throw new TypeError("@@toPrimitive must return a primitive value.");}return ("string" === r ? String : Number)(t);}function _slicedToArray(arr, i) {return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest();}function _nonIterableRest() {throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");}function _unsupportedIterableToArray(o, minLen) {if (!o) return;if (typeof o === "string") return _arrayLikeToArray(o, minLen);var n = Object.prototype.toString.call(o).slice(8, -1);if (n === "Object" && o.constructor) n = o.constructor.name;if (n === "Map" || n === "Set") return Array.from(o);if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);}function _arrayLikeToArray(arr, len) {if (len == null || len > arr.length) len = arr.length;for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i];return arr2;}function _iterableToArrayLimit(r, l) {var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"];if (null != t) {var e,n,i,u,a = [],f = !0,o = !1;try {if (i = (t = t.call(r)).next, 0 === l) {if (Object(t) !== t) return;f = !1;} else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0);} catch (r) {o = !0, n = r;} finally {try {if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return;} finally {if (o) throw n;}}return a;}}function _arrayWithHoles(arr) {if (Array.isArray(arr)) return arr;}function _typeof(o) {"@babel/helpers - typeof";return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) {return typeof o;} : function (o) {return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o;}, _typeof(o);}(function () {var __defProp = Object.defineProperty;
var __export = function __export(target, all) {
for (var name in all)
__defProp(target, name, {
get: all[name],
enumerable: true,
configurable: true,
set: function set(newValue) {return all[name] = function () {return newValue;};}
});
};
// lib/index.mjs
var exports_lib = {};
__export(exports_lib, {
yearsToQuarters: function yearsToQuarters() {
{
return _yearsToQuarters;
}
},
yearsToMonths: function yearsToMonths() {
{
return _yearsToMonths;
}
},
yearsToDays: function yearsToDays() {
{
return _yearsToDays;
}
},
weeksToDays: function weeksToDays() {
{
return _weeksToDays;
}
},
transpose: function transpose() {
{
return _transpose;
}
},
toDate: function toDate() {
{
return _toDate;
}
},
subYears: function subYears() {
{
return _subYears;
}
},
subWeeks: function subWeeks() {
{
return _subWeeks;
}
},
subSeconds: function subSeconds() {
{
return _subSeconds;
}
},
subQuarters: function subQuarters() {
{
return _subQuarters;
}
},
subMonths: function subMonths() {
{
return _subMonths;
}
},
subMinutes: function subMinutes() {
{
return _subMinutes;
}
},
subMilliseconds: function subMilliseconds() {
{
return _subMilliseconds;
}
},
subISOWeekYears: function subISOWeekYears() {
{
return _subISOWeekYears;
}
},
subHours: function subHours() {
{
return _subHours;
}
},
subDays: function subDays() {
{
return _subDays;
}
},
subBusinessDays: function subBusinessDays() {
{
return _subBusinessDays;
}
},
sub: function sub() {
{
return _sub;
}
},
startOfYesterday: function startOfYesterday() {
{
return _startOfYesterday;
}
},
startOfYear: function startOfYear() {
{
return _startOfYear;
}
},
startOfWeekYear: function startOfWeekYear() {
{
return _startOfWeekYear;
}
},
startOfWeek: function startOfWeek() {
{
return _startOfWeek;
}
},
startOfTomorrow: function startOfTomorrow() {
{
return _startOfTomorrow;
}
},
startOfToday: function startOfToday() {
{
return _startOfToday;
}
},
startOfSecond: function startOfSecond() {
{
return _startOfSecond;
}
},
startOfQuarter: function startOfQuarter() {
{
return _startOfQuarter;
}
},
startOfMonth: function startOfMonth() {
{
return _startOfMonth;
}
},
startOfMinute: function startOfMinute() {
{
return _startOfMinute;
}
},
startOfISOWeekYear: function startOfISOWeekYear() {
{
return _startOfISOWeekYear;
}
},
startOfISOWeek: function startOfISOWeek() {
{
return _startOfISOWeek;
}
},
startOfHour: function startOfHour() {
{
return _startOfHour;
}
},
startOfDecade: function startOfDecade() {
{
return _startOfDecade;
}
},
startOfDay: function startOfDay() {
{
return _startOfDay;
}
},
setYear: function setYear() {
{
return _setYear;
}
},
setWeekYear: function setWeekYear() {
{
return _setWeekYear;
}
},
setWeek: function setWeek() {
{
return _setWeek;
}
},
setSeconds: function setSeconds() {
{
return _setSeconds;
}
},
setQuarter: function setQuarter() {
{
return _setQuarter;
}
},
setMonth: function setMonth() {
{
return _setMonth;
}
},
setMinutes: function setMinutes() {
{
return _setMinutes;
}
},
setMilliseconds: function setMilliseconds() {
{
return _setMilliseconds;
}
},
setISOWeekYear: function setISOWeekYear() {
{
return _setISOWeekYear;
}
},
setISOWeek: function setISOWeek() {
{
return _setISOWeek;
}
},
setISODay: function setISODay() {
{
return _setISODay;
}
},
setHours: function setHours() {
{
return _setHours;
}
},
setDefaultOptions: function setDefaultOptions() {
{
return setDefaultOptions2;
}
},
setDayOfYear: function setDayOfYear() {
{
return _setDayOfYear;
}
},
setDay: function setDay() {
{
return _setDay;
}
},
setDate: function setDate() {
{
return _setDate;
}
},
set: function set() {
{
return _set;
}
},
secondsToMinutes: function secondsToMinutes() {
{
return _secondsToMinutes;
}
},
secondsToMilliseconds: function secondsToMilliseconds() {
{
return _secondsToMilliseconds;
}
},
secondsToHours: function secondsToHours() {
{
return _secondsToHours;
}
},
roundToNearestMinutes: function roundToNearestMinutes() {
{
return _roundToNearestMinutes;
}
},
roundToNearestHours: function roundToNearestHours() {
{
return _roundToNearestHours;
}
},
quartersToYears: function quartersToYears() {
{
return _quartersToYears;
}
},
quartersToMonths: function quartersToMonths() {
{
return _quartersToMonths;
}
},
previousWednesday: function previousWednesday() {
{
return _previousWednesday;
}
},
previousTuesday: function previousTuesday() {
{
return _previousTuesday;
}
},
previousThursday: function previousThursday() {
{
return _previousThursday;
}
},
previousSunday: function previousSunday() {
{
return _previousSunday;
}
},
previousSaturday: function previousSaturday() {
{
return _previousSaturday;
}
},
previousMonday: function previousMonday() {
{
return _previousMonday;
}
},
previousFriday: function previousFriday() {
{
return _previousFriday;
}
},
previousDay: function previousDay() {
{
return _previousDay;
}
},
parsers: function parsers() {
{
return _parsers;
}
},
parseJSON: function parseJSON() {
{
return _parseJSON;
}
},
parseISO: function parseISO() {
{
return _parseISO;
}
},
parse: function parse() {
{
return _parse;
}
},
nextWednesday: function nextWednesday() {
{
return _nextWednesday;
}
},
nextTuesday: function nextTuesday() {
{
return _nextTuesday;
}
},
nextThursday: function nextThursday() {
{
return _nextThursday;
}
},
nextSunday: function nextSunday() {
{
return _nextSunday;
}
},
nextSaturday: function nextSaturday() {
{
return _nextSaturday;
}
},
nextMonday: function nextMonday() {
{
return _nextMonday;
}
},
nextFriday: function nextFriday() {
{
return _nextFriday;
}
},
nextDay: function nextDay() {
{
return _nextDay;
}
},
monthsToYears: function monthsToYears() {
{
return _monthsToYears;
}
},
monthsToQuarters: function monthsToQuarters() {
{
return _monthsToQuarters;
}
},
minutesToSeconds: function minutesToSeconds() {
{
return _minutesToSeconds;
}
},
minutesToMilliseconds: function minutesToMilliseconds() {
{
return _minutesToMilliseconds;
}
},
minutesToHours: function minutesToHours() {
{
return _minutesToHours;
}
},
min: function min() {
{
return _min;
}
},
millisecondsToSeconds: function millisecondsToSeconds() {
{
return _millisecondsToSeconds;
}
},
millisecondsToMinutes: function millisecondsToMinutes() {
{
return _millisecondsToMinutes;
}
},
millisecondsToHours: function millisecondsToHours() {
{
return _millisecondsToHours;
}
},
milliseconds: function milliseconds() {
{
return _milliseconds;
}
},
max: function max() {
{
return _max;
}
},
longFormatters: function longFormatters() {
{
return _longFormatters;
}
},
lightFormatters: function lightFormatters() {
{
return _lightFormatters;
}
},
lightFormat: function lightFormat() {
{
return _lightFormat;
}
},
lastDayOfYear: function lastDayOfYear() {
{
return _lastDayOfYear;
}
},
lastDayOfWeek: function lastDayOfWeek() {
{
return _lastDayOfWeek;
}
},
lastDayOfQuarter: function lastDayOfQuarter() {
{
return _lastDayOfQuarter;
}
},
lastDayOfMonth: function lastDayOfMonth() {
{
return _lastDayOfMonth;
}
},
lastDayOfISOWeekYear: function lastDayOfISOWeekYear() {
{
return _lastDayOfISOWeekYear;
}
},
lastDayOfISOWeek: function lastDayOfISOWeek() {
{
return _lastDayOfISOWeek;
}
},
lastDayOfDecade: function lastDayOfDecade() {
{
return _lastDayOfDecade;
}
},
isYesterday: function isYesterday() {
{
return _isYesterday;
}
},
isWithinInterval: function isWithinInterval() {
{
return _isWithinInterval;
}
},
isWeekend: function isWeekend() {
{
return _isWeekend;
}
},
isWednesday: function isWednesday() {
{
return _isWednesday;
}
},
isValid: function isValid() {
{
return _isValid;
}
},
isTuesday: function isTuesday() {
{
return _isTuesday;
}
},
isTomorrow: function isTomorrow() {
{
return _isTomorrow;
}
},
isToday: function isToday() {
{
return _isToday;
}
},
isThursday: function isThursday() {
{
return _isThursday;
}
},
isThisYear: function isThisYear() {
{
return _isThisYear;
}
},
isThisWeek: function isThisWeek() {
{
return _isThisWeek;
}
},
isThisSecond: function isThisSecond() {
{
return _isThisSecond;
}
},
isThisQuarter: function isThisQuarter() {
{
return _isThisQuarter;
}
},
isThisMonth: function isThisMonth() {
{
return _isThisMonth;
}
},
isThisMinute: function isThisMinute() {
{
return _isThisMinute;
}
},
isThisISOWeek: function isThisISOWeek() {
{
return _isThisISOWeek;
}
},
isThisHour: function isThisHour() {
{
return _isThisHour;
}
},
isSunday: function isSunday() {
{
return _isSunday;
}
},
isSaturday: function isSaturday() {
{
return _isSaturday;
}
},
isSameYear: function isSameYear() {
{
return _isSameYear;
}
},
isSameWeek: function isSameWeek() {
{
return _isSameWeek;
}
},
isSameSecond: function isSameSecond() {
{
return _isSameSecond;
}
},
isSameQuarter: function isSameQuarter() {
{
return _isSameQuarter;
}
},
isSameMonth: function isSameMonth() {
{
return _isSameMonth;
}
},
isSameMinute: function isSameMinute() {
{
return _isSameMinute;
}
},
isSameISOWeekYear: function isSameISOWeekYear() {
{
return _isSameISOWeekYear;
}
},
isSameISOWeek: function isSameISOWeek() {
{
return _isSameISOWeek;
}
},
isSameHour: function isSameHour() {
{
return _isSameHour;
}
},
isSameDay: function isSameDay() {
{
return _isSameDay;
}
},
isPast: function isPast() {
{
return _isPast;
}
},
isMonday: function isMonday() {
{
return _isMonday;
}
},
isMatch: function isMatch() {
{
return _isMatch;
}
},
isLeapYear: function isLeapYear() {
{
return _isLeapYear;
}
},
isLastDayOfMonth: function isLastDayOfMonth() {
{
return _isLastDayOfMonth;
}
},
isFuture: function isFuture() {
{
return _isFuture;
}
},
isFriday: function isFriday() {
{
return _isFriday;
}
},
isFirstDayOfMonth: function isFirstDayOfMonth() {
{
return _isFirstDayOfMonth;
}
},
isExists: function isExists() {
{
return _isExists;
}
},
isEqual: function isEqual() {
{
return _isEqual;
}
},
isDate: function isDate() {
{
return _isDate;
}
},
isBefore: function isBefore() {
{
return _isBefore;
}
},
isAfter: function isAfter() {
{
return _isAfter;
}
},
intlFormatDistance: function intlFormatDistance() {
{
return _intlFormatDistance;
}
},
intlFormat: function intlFormat() {
{
return _intlFormat;
}
},
intervalToDuration: function intervalToDuration() {
{
return _intervalToDuration;
}
},
interval: function interval() {
{
return _interval;
}
},
hoursToSeconds: function hoursToSeconds() {
{
return _hoursToSeconds;
}
},
hoursToMinutes: function hoursToMinutes() {
{
return _hoursToMinutes;
}
},
hoursToMilliseconds: function hoursToMilliseconds() {
{
return _hoursToMilliseconds;
}
},
getYear: function getYear() {
{
return _getYear;
}
},
getWeeksInMonth: function getWeeksInMonth() {
{
return _getWeeksInMonth;
}
},
getWeekYear: function getWeekYear() {
{
return _getWeekYear;
}
},
getWeekOfMonth: function getWeekOfMonth() {
{
return _getWeekOfMonth;
}
},
getWeek: function getWeek() {
{
return _getWeek;
}
},
getUnixTime: function getUnixTime() {
{
return _getUnixTime;
}
},
getTime: function getTime() {
{
return _getTime;
}
},
getSeconds: function getSeconds() {
{
return _getSeconds;
}
},
getQuarter: function getQuarter() {
{
return _getQuarter;
}
},
getOverlappingDaysInIntervals: function getOverlappingDaysInIntervals() {
{
return _getOverlappingDaysInIntervals;
}
},
getMonth: function getMonth() {
{
return _getMonth;
}
},
getMinutes: function getMinutes() {
{
return _getMinutes;
}
},
getMilliseconds: function getMilliseconds() {
{
return _getMilliseconds;
}
},
getISOWeeksInYear: function getISOWeeksInYear() {
{
return _getISOWeeksInYear;
}
},
getISOWeekYear: function getISOWeekYear() {
{
return _getISOWeekYear;
}
},
getISOWeek: function getISOWeek() {
{
return _getISOWeek;
}
},
getISODay: function getISODay() {
{
return _getISODay;
}
},
getHours: function getHours() {
{
return _getHours;
}
},
getDefaultOptions: function getDefaultOptions() {
{
return getDefaultOptions2;
}
},
getDecade: function getDecade() {
{
return _getDecade;
}
},
getDaysInYear: function getDaysInYear() {
{
return _getDaysInYear;
}
},
getDaysInMonth: function getDaysInMonth() {
{
return _getDaysInMonth;
}
},
getDayOfYear: function getDayOfYear() {
{
return _getDayOfYear;
}
},
getDay: function getDay() {
{
return _getDay;
}
},
getDate: function getDate() {
{
return _getDate;
}
},
fromUnixTime: function fromUnixTime() {
{
return _fromUnixTime;
}
},
formatters: function formatters() {
{
return _formatters;
}
},
formatRelative: function formatRelative() {
{
return formatRelative3;
}
},
formatRFC7231: function formatRFC7231() {
{
return _formatRFC;
}
},
formatRFC3339: function formatRFC3339() {
{
return _formatRFC2;
}
},
formatISODuration: function formatISODuration() {
{
return _formatISODuration;
}
},
formatISO9075: function formatISO9075() {
{
return _formatISO;
}
},
formatISO: function formatISO() {
{
return _formatISO2;
}
},
formatDuration: function formatDuration() {
{
return _formatDuration;
}
},
formatDistanceToNowStrict: function formatDistanceToNowStrict() {
{
return _formatDistanceToNowStrict;
}
},
formatDistanceToNow: function formatDistanceToNow() {
{
return _formatDistanceToNow;
}
},
formatDistanceStrict: function formatDistanceStrict() {
{
return _formatDistanceStrict;
}
},
formatDistance: function formatDistance() {
{
return formatDistance3;
}
},
formatDate: function formatDate() {
{
return _format;
}
},
format: function format() {
{
return _format;
}
},
endOfYesterday: function endOfYesterday() {
{
return _endOfYesterday;
}
},
endOfYear: function endOfYear() {
{
return _endOfYear;
}
},
endOfWeek: function endOfWeek() {
{
return _endOfWeek;
}
},
endOfTomorrow: function endOfTomorrow() {
{
return _endOfTomorrow;
}
},
endOfToday: function endOfToday() {
{
return _endOfToday;
}
},
endOfSecond: function endOfSecond() {
{
return _endOfSecond;
}
},
endOfQuarter: function endOfQuarter() {
{
return _endOfQuarter;
}
},
endOfMonth: function endOfMonth() {
{
return _endOfMonth;
}
},
endOfMinute: function endOfMinute() {
{
return _endOfMinute;
}
},
endOfISOWeekYear: function endOfISOWeekYear() {
{
return _endOfISOWeekYear;
}
},
endOfISOWeek: function endOfISOWeek() {