Blame view

天文台pc/tianwentai-ui/node_modules/date-fns/parse/_lib/parsers.js 6.59 KB
bc518174   王天杨   提交两个项目文件
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
  "use strict";
  exports.parsers = void 0;
  var _EraParser = require("./parsers/EraParser.js");
  var _YearParser = require("./parsers/YearParser.js");
  var _LocalWeekYearParser = require("./parsers/LocalWeekYearParser.js");
  var _ISOWeekYearParser = require("./parsers/ISOWeekYearParser.js");
  var _ExtendedYearParser = require("./parsers/ExtendedYearParser.js");
  var _QuarterParser = require("./parsers/QuarterParser.js");
  var _StandAloneQuarterParser = require("./parsers/StandAloneQuarterParser.js");
  var _MonthParser = require("./parsers/MonthParser.js");
  var _StandAloneMonthParser = require("./parsers/StandAloneMonthParser.js");
  var _LocalWeekParser = require("./parsers/LocalWeekParser.js");
  var _ISOWeekParser = require("./parsers/ISOWeekParser.js");
  var _DateParser = require("./parsers/DateParser.js");
  var _DayOfYearParser = require("./parsers/DayOfYearParser.js");
  var _DayParser = require("./parsers/DayParser.js");
  var _LocalDayParser = require("./parsers/LocalDayParser.js");
  var _StandAloneLocalDayParser = require("./parsers/StandAloneLocalDayParser.js");
  var _ISODayParser = require("./parsers/ISODayParser.js");
  var _AMPMParser = require("./parsers/AMPMParser.js");
  var _AMPMMidnightParser = require("./parsers/AMPMMidnightParser.js");
  var _DayPeriodParser = require("./parsers/DayPeriodParser.js");
  var _Hour1to12Parser = require("./parsers/Hour1to12Parser.js");
  var _Hour0to23Parser = require("./parsers/Hour0to23Parser.js");
  var _Hour0To11Parser = require("./parsers/Hour0To11Parser.js");
  var _Hour1To24Parser = require("./parsers/Hour1To24Parser.js");
  var _MinuteParser = require("./parsers/MinuteParser.js");
  var _SecondParser = require("./parsers/SecondParser.js");
  var _FractionOfSecondParser = require("./parsers/FractionOfSecondParser.js");
  var _ISOTimezoneWithZParser = require("./parsers/ISOTimezoneWithZParser.js");
  var _ISOTimezoneParser = require("./parsers/ISOTimezoneParser.js");
  var _TimestampSecondsParser = require("./parsers/TimestampSecondsParser.js");
  var _TimestampMillisecondsParser = require("./parsers/TimestampMillisecondsParser.js");
  
  /*
   * |     | Unit                           |     | Unit                           |
   * |-----|--------------------------------|-----|--------------------------------|
   * |  a  | AM, PM                         |  A* | Milliseconds in day            |
   * |  b  | AM, PM, noon, midnight         |  B  | Flexible day period            |
   * |  c  | Stand-alone local day of week  |  C* | Localized hour w/ day period   |
   * |  d  | Day of month                   |  D  | Day of year                    |
   * |  e  | Local day of week              |  E  | Day of week                    |
   * |  f  |                                |  F* | Day of week in month           |
   * |  g* | Modified Julian day            |  G  | Era                            |
   * |  h  | Hour [1-12]                    |  H  | Hour [0-23]                    |
   * |  i! | ISO day of week                |  I! | ISO week of year               |
   * |  j* | Localized hour w/ day period   |  J* | Localized hour w/o day period  |
   * |  k  | Hour [1-24]                    |  K  | Hour [0-11]                    |
   * |  l* | (deprecated)                   |  L  | Stand-alone month              |
   * |  m  | Minute                         |  M  | Month                          |
   * |  n  |                                |  N  |                                |
   * |  o! | Ordinal number modifier        |  O* | Timezone (GMT)                 |
   * |  p  |                                |  P  |                                |
   * |  q  | Stand-alone quarter            |  Q  | Quarter                        |
   * |  r* | Related Gregorian year         |  R! | ISO week-numbering year        |
   * |  s  | Second                         |  S  | Fraction of second             |
   * |  t! | Seconds timestamp              |  T! | Milliseconds timestamp         |
   * |  u  | Extended year                  |  U* | Cyclic year                    |
   * |  v* | Timezone (generic non-locat.)  |  V* | Timezone (location)            |
   * |  w  | Local week of year             |  W* | Week of month                  |
   * |  x  | Timezone (ISO-8601 w/o Z)      |  X  | Timezone (ISO-8601)            |
   * |  y  | Year (abs)                     |  Y  | Local week-numbering year      |
   * |  z* | Timezone (specific non-locat.) |  Z* | Timezone (aliases)             |
   *
   * Letters marked by * are not implemented but reserved by Unicode standard.
   *
   * Letters marked by ! are non-standard, but implemented by date-fns:
   * - `o` modifies the previous token to turn it into an ordinal (see `parse` docs)
   * - `i` is ISO day of week. For `i` and `ii` is returns numeric ISO week days,
   *   i.e. 7 for Sunday, 1 for Monday, etc.
   * - `I` is ISO week of year, as opposed to `w` which is local week of year.
   * - `R` is ISO week-numbering year, as opposed to `Y` which is local week-numbering year.
   *   `R` is supposed to be used in conjunction with `I` and `i`
   *   for universal ISO week-numbering date, whereas
   *   `Y` is supposed to be used in conjunction with `w` and `e`
   *   for week-numbering date specific to the locale.
   */
  // eslint-disable-next-line @typescript-eslint/no-explicit-any -- It's ok, we want any here
  const parsers = (exports.parsers = {
    G: new _EraParser.EraParser(),
    y: new _YearParser.YearParser(),
    Y: new _LocalWeekYearParser.LocalWeekYearParser(),
    R: new _ISOWeekYearParser.ISOWeekYearParser(),
    u: new _ExtendedYearParser.ExtendedYearParser(),
    Q: new _QuarterParser.QuarterParser(),
    q: new _StandAloneQuarterParser.StandAloneQuarterParser(),
    M: new _MonthParser.MonthParser(),
    L: new _StandAloneMonthParser.StandAloneMonthParser(),
    w: new _LocalWeekParser.LocalWeekParser(),
    I: new _ISOWeekParser.ISOWeekParser(),
    d: new _DateParser.DateParser(),
    D: new _DayOfYearParser.DayOfYearParser(),
    E: new _DayParser.DayParser(),
    e: new _LocalDayParser.LocalDayParser(),
    c: new _StandAloneLocalDayParser.StandAloneLocalDayParser(),
    i: new _ISODayParser.ISODayParser(),
    a: new _AMPMParser.AMPMParser(),
    b: new _AMPMMidnightParser.AMPMMidnightParser(),
    B: new _DayPeriodParser.DayPeriodParser(),
    h: new _Hour1to12Parser.Hour1to12Parser(),
    H: new _Hour0to23Parser.Hour0to23Parser(),
    K: new _Hour0To11Parser.Hour0To11Parser(),
    k: new _Hour1To24Parser.Hour1To24Parser(),
    m: new _MinuteParser.MinuteParser(),
    s: new _SecondParser.SecondParser(),
    S: new _FractionOfSecondParser.FractionOfSecondParser(),
    X: new _ISOTimezoneWithZParser.ISOTimezoneWithZParser(),
    x: new _ISOTimezoneParser.ISOTimezoneParser(),
    t: new _TimestampSecondsParser.TimestampSecondsParser(),
    T: new _TimestampMillisecondsParser.TimestampMillisecondsParser(),
  });