You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

21 lines
563 B

"use strict";
exports.TimestampMillisecondsParser = void 0;
var _index = require("../../../constructFrom.cjs");
var _Parser = require("../Parser.cjs");
var _utils = require("../utils.cjs");
class TimestampMillisecondsParser extends _Parser.Parser {
priority = 20;
parse(dateString) {
return (0, _utils.parseAnyDigitsSigned)(dateString);
}
set(date, _flags, value) {
return [(0, _index.constructFrom)(date, value), { timestampIsSet: true }];
}
incompatibleTokens = "*";
}
exports.TimestampMillisecondsParser = TimestampMillisecondsParser;