Rocky_Mountain_Vending/.pnpm-store/v10/files/39/bbf9207852d60c9e6beb35badbe50a39e0b150cb158d6d8d0fdbadba7fbd035b9215b6d932bacd4653077d1db9620a55b539f343c81feb68cf55637baddf68
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

14 lines
494 B
Text

import { ArrayCreate } from '../262';
import { PartitionNumberPattern } from './PartitionNumberPattern';
export function FormatNumericToParts(nf, x, implDetails) {
var parts = PartitionNumberPattern(implDetails.getInternalSlots(nf), x);
var result = ArrayCreate(0);
for (var _i = 0, parts_1 = parts; _i < parts_1.length; _i++) {
var part = parts_1[_i];
result.push({
type: part.type,
value: part.value,
});
}
return result;
}