deploy: v0.12 fix 存档key名

This commit is contained in:
2026-06-24 03:09:02 +00:00
parent 7a08d49fe3
commit e0a5281119
58743 changed files with 7297269 additions and 39505 deletions
+24
View File
@@ -0,0 +1,24 @@
"use strict";
exports.TimestampSecondsParser = void 0;
var _index = require("../../../constructFrom.cjs");
var _Parser = require("../Parser.cjs");
var _utils = require("../utils.cjs");
class TimestampSecondsParser extends _Parser.Parser {
priority = 40;
parse(dateString) {
return (0, _utils.parseAnyDigitsSigned)(dateString);
}
set(date, _flags, value) {
return [
(0, _index.constructFrom)(date, value * 1000),
{ timestampIsSet: true },
];
}
incompatibleTokens = "*";
}
exports.TimestampSecondsParser = TimestampSecondsParser;