Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
22 lines
563 B
Plaintext
22 lines
563 B
Plaintext
"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;
|