Files
klz-cables.com/.pnpm-store/v10/files/57/8cb8cca147bfcb7caf18d90a34b8bfd97c8563c04dea67215248de3876d9ebb6d007c6ce7629d939566578ecc6fa6d93c720c5abf112a6e64dd907397cc8b4
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

13 lines
470 B
Plaintext

/**
* Converts a UTC offset string to a GraphQL-safe enum name.
* Uses `_TZOFFSET_` prefix to avoid conflicts with user-defined enum values.
*
* Examples:
* - '+05:30' → '_TZOFFSET_PLUS_05_30'
* - '-08:00' → '_TZOFFSET_MINUS_08_00'
* - '+00:00' → '_TZOFFSET_PLUS_00_00'
*
* @returns The GraphQL-safe name, or null if not a UTC offset
*/
export declare const formatUtcOffset: (value: string) => null | string;
//# sourceMappingURL=formatUtcOffset.d.ts.map