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
18 lines
435 B
Plaintext
18 lines
435 B
Plaintext
import { constructFrom } from "../../../constructFrom.mjs";
|
|
import { Parser } from "../Parser.mjs";
|
|
import { parseAnyDigitsSigned } from "../utils.mjs";
|
|
|
|
export class TimestampSecondsParser extends Parser {
|
|
priority = 40;
|
|
|
|
parse(dateString) {
|
|
return parseAnyDigitsSigned(dateString);
|
|
}
|
|
|
|
set(date, _flags, value) {
|
|
return [constructFrom(date, value * 1000), { timestampIsSet: true }];
|
|
}
|
|
|
|
incompatibleTokens = "*";
|
|
}
|