Files
klz-cables.com/.pnpm-store/v10/files/77/130052ec3150dce59f88c307cfa56931e09a7ba0351c4e1d24565eba8cb74cb845266aa56d05d67d8ec8fcf02e8e5f818ab283c626c254f320e589cb5999b5
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

15 lines
420 B
Plaintext

import { ArrayCreate } from "../262.js";
import "../types/number.js";
import { PartitionNumberPattern } from "./PartitionNumberPattern.js";
export function FormatNumericToParts(nf, x, implDetails) {
const parts = PartitionNumberPattern(implDetails.getInternalSlots(nf), x);
const result = ArrayCreate(0);
for (const part of parts) {
result.push({
type: part.type,
value: part.value
});
}
return result;
}