Files
klz-cables.com/.pnpm-store/v10/files/8c/30de9f660c915a5253a4bf3292683fbd3a27f7662a0ded7dbb10e1dc01cb41f08d4007709ada8ecf9b97e125f6d10cda98fa0a67f75df81e1615674096780f
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
234 B
Plaintext

import { HasOwnProperty } from "../262.js";
/**
* https://tc39.es/ecma402/#sec-currencydigits
*/
export function CurrencyDigits(c, { currencyDigitsData }) {
return HasOwnProperty(currencyDigitsData, c) ? currencyDigitsData[c] : 2;
}