Files
klz-cables.com/.pnpm-store/v10/files/88/083dbfb2abcdf3bd8cb3a5bda698c127897d1d6bba5700560e32473885a55b573f982b0511df818da63776eb09a9bb5cc44f42fd3d58fe0ac893a112b44298
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

33 lines
1.1 KiB
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.fontFamily = void 0;
exports.fontFamily = {
name: "font-family",
initialValue: '',
prefix: false,
type: 1 /* LIST */,
parse: function (_context, tokens) {
var accumulator = [];
var results = [];
tokens.forEach(function (token) {
switch (token.type) {
case 20 /* IDENT_TOKEN */:
case 0 /* STRING_TOKEN */:
accumulator.push(token.value);
break;
case 17 /* NUMBER_TOKEN */:
accumulator.push(token.number.toString());
break;
case 4 /* COMMA_TOKEN */:
results.push(accumulator.join(' '));
accumulator.length = 0;
break;
}
});
if (accumulator.length) {
results.push(accumulator.join(' '));
}
return results.map(function (result) { return (result.indexOf(' ') === -1 ? result : "'" + result + "'"); });
}
};
//# sourceMappingURL=font-family.js.map