Files
klz-cables.com/.pnpm-store/v10/files/54/57694f173912a8c1cadac85996cedc7f603df24d7d973fcb43e251d5e82f0cdf1c5b33d41c20bc39a033c011266eeb761501a700f5a34fe65ea01ebfb13fe8
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

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;