aboutsummaryrefslogtreecommitdiffstats
path: root/node_modules/date-fns/esm/parse/_lib/parsers/Hour0To11Parser.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/date-fns/esm/parse/_lib/parsers/Hour0To11Parser.js')
-rw-r--r--node_modules/date-fns/esm/parse/_lib/parsers/Hour0To11Parser.js56
1 files changed, 56 insertions, 0 deletions
diff --git a/node_modules/date-fns/esm/parse/_lib/parsers/Hour0To11Parser.js b/node_modules/date-fns/esm/parse/_lib/parsers/Hour0To11Parser.js
new file mode 100644
index 0000000..57af2ba
--- /dev/null
+++ b/node_modules/date-fns/esm/parse/_lib/parsers/Hour0To11Parser.js
@@ -0,0 +1,56 @@
+import _classCallCheck from "@babel/runtime/helpers/esm/classCallCheck";
+import _createClass from "@babel/runtime/helpers/esm/createClass";
+import _assertThisInitialized from "@babel/runtime/helpers/esm/assertThisInitialized";
+import _inherits from "@babel/runtime/helpers/esm/inherits";
+import _createSuper from "@babel/runtime/helpers/esm/createSuper";
+import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
+import { Parser } from "../Parser.js";
+import { numericPatterns } from "../constants.js";
+import { parseNumericPattern, parseNDigits } from "../utils.js";
+export var Hour0To11Parser = /*#__PURE__*/function (_Parser) {
+ _inherits(Hour0To11Parser, _Parser);
+ var _super = _createSuper(Hour0To11Parser);
+ function Hour0To11Parser() {
+ var _this;
+ _classCallCheck(this, Hour0To11Parser);
+ for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
+ args[_key] = arguments[_key];
+ }
+ _this = _super.call.apply(_super, [this].concat(args));
+ _defineProperty(_assertThisInitialized(_this), "priority", 70);
+ _defineProperty(_assertThisInitialized(_this), "incompatibleTokens", ['h', 'H', 'k', 't', 'T']);
+ return _this;
+ }
+ _createClass(Hour0To11Parser, [{
+ key: "parse",
+ value: function parse(dateString, token, match) {
+ switch (token) {
+ case 'K':
+ return parseNumericPattern(numericPatterns.hour11h, dateString);
+ case 'Ko':
+ return match.ordinalNumber(dateString, {
+ unit: 'hour'
+ });
+ default:
+ return parseNDigits(token.length, dateString);
+ }
+ }
+ }, {
+ key: "validate",
+ value: function validate(_date, value) {
+ return value >= 0 && value <= 11;
+ }
+ }, {
+ key: "set",
+ value: function set(date, _flags, value) {
+ var isPM = date.getUTCHours() >= 12;
+ if (isPM && value < 12) {
+ date.setUTCHours(value + 12, 0, 0, 0);
+ } else {
+ date.setUTCHours(value, 0, 0, 0);
+ }
+ return date;
+ }
+ }]);
+ return Hour0To11Parser;
+}(Parser); \ No newline at end of file
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage