Files
klz-cables.com/.pnpm-store/v10/files/fd/04022ad8b45dac314f2c87b690ac454a039437a2fc7bcca407a529f34b429e9ed87e7d9fb800972ba296f4aec4188d418a9bbdfbc33e55a3605ca389bac746
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

9 lines
350 B
Plaintext

import { invariant } from "./utils.js";
export function CanonicalizeUValue(ukey, uvalue) {
// TODO: Implement algorithm for CanonicalizeUValue per https://tc39.es/ecma402/#sec-canonicalizeuvalue
let lowerValue = uvalue.toLowerCase();
invariant(ukey !== undefined, `ukey must be defined`);
let canonicalized = lowerValue;
return canonicalized;
}