Files
klz-cables.com/.pnpm-store/v10/files/a2/e6c8150430dfd192eed7d0c7cbd1c7f8947fbd5858f82620aad204ce1c021c256010d03d8d9931941c9a906c326cfcc06a52603db9f38e36bb98093dacd30e
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

26 lines
718 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.fontWeight = void 0;
var parser_1 = require("../syntax/parser");
exports.fontWeight = {
name: 'font-weight',
initialValue: 'normal',
type: 0 /* VALUE */,
prefix: false,
parse: function (_context, token) {
if (parser_1.isNumberToken(token)) {
return token.number;
}
if (parser_1.isIdentToken(token)) {
switch (token.value) {
case 'bold':
return 700;
case 'normal':
default:
return 400;
}
}
return 400;
}
};
//# sourceMappingURL=font-weight.js.map