Files
klz-cables.com/.pnpm-store/v10/files/51/24d1d1abb7f9f997ad1a9e6730ce3efb3f2d9a1422ee8648465d393416876cc8cd7be5372052a768acdb1e2b00944d0c132e1087a56615af82fa97b2d86576
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

16 lines
606 B
Plaintext

/**
* CanonicalizeTimeZoneName ( timeZone )
* https://tc39.es/ecma402/#sec-canonicalizetimezonename
*
* Extended to support UTC offset time zones per ECMA-402 PR #788 (ES2026).
* Returns the canonical and case-regularized form of a timezone identifier.
*
* @param tz - The timezone identifier to canonicalize
* @param implDetails - Implementation details containing timezone data
* @returns The canonical timezone identifier
*/
export declare function CanonicalizeTimeZoneName(tz: string, { zoneNames, uppercaseLinks }: {
zoneNames: readonly string[];
uppercaseLinks: Record<string, string>;
}): string;