Files
klz-cables.com/.pnpm-store/v10/files/64/b9efc887c9ee03c3c3a75256d576f35c4f12cf278d40e1711fefa086616ca0b3ac0d235c8bbe8499b358399111a01a31b143da8aa47ce74fcc5ac36cdcfa1f
Marc Mintel 5397309103
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
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

25 lines
566 B
Plaintext

"use strict";
exports.TimestampSecondsParser = void 0;
var _index = require("../../../constructFrom.js");
var _Parser = require("../Parser.js");
var _utils = require("../utils.js");
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;