Rocky_Mountain_Vending/.pnpm-store/v10/files/6d/34c3dd188bb359bd9594afd7a3e2f3e7a7c80915357c47738a8c9a2a57c526b7f018ee749605ff768ec7d674b397537803963f846062213908e435d78bc1c1
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

17 lines
654 B
Text

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.FormatNumericToParts = FormatNumericToParts;
var _262_1 = require("../262");
var PartitionNumberPattern_1 = require("./PartitionNumberPattern");
function FormatNumericToParts(nf, x, implDetails) {
var parts = (0, PartitionNumberPattern_1.PartitionNumberPattern)(implDetails.getInternalSlots(nf), x);
var result = (0, _262_1.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;
}