Files
klz-cables.com/.pnpm-store/v10/files/da/3e7a386fe6728d6e8b6b3fe2692032c3b32181d71b1828de6991543e10e745c0076693e746db9951952b61f5f9f5196e9bb20a3884784f02a73430a36c6c0a
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

8 lines
532 B
Plaintext

import { CanonicalizeLocaleList } from "./abstract/CanonicalizeLocaleList.js";
import { ResolveLocale } from "./abstract/ResolveLocale.js";
export function match(requestedLocales, availableLocales, defaultLocale, opts) {
return ResolveLocale(availableLocales, CanonicalizeLocaleList(requestedLocales), { localeMatcher: opts?.algorithm || "best fit" }, [], {}, () => defaultLocale).locale;
}
export { LookupSupportedLocales } from "./abstract/LookupSupportedLocales.js";
export { ResolveLocale } from "./abstract/ResolveLocale.js";