Files
klz-cables.com/.pnpm-store/v10/files/4f/e67d3d73d9b90988d680a149defb1978c72a0df9bd6791f63e06f5f5be0c35e07cfd5efb960a2f245485d01cf8db565333634196d84aedf1bcf858fc87c249
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

18 lines
535 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.time = void 0;
exports.time = {
name: 'time',
parse: function (_context, value) {
if (value.type === 15 /* DIMENSION_TOKEN */) {
switch (value.unit.toLowerCase()) {
case 's':
return 1000 * value.number;
case 'ms':
return value.number;
}
}
throw new Error("Unsupported time type");
}
};
//# sourceMappingURL=time.js.map