Rocky_Mountain_Vending/.pnpm-store/v10/files/70/675205cb82f2cf3468c1baa011eb3e642b272daac1a9a7de64f42d0fee9a59d8b137bf7648bcb65bbc7cbb0a4a663e3bebf42c5da651065e236a39f230c017
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

12 lines
487 B
Text

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.FormatApproximately = FormatApproximately;
/**
* https://tc39.es/ecma402/#sec-formatapproximately
*/
function FormatApproximately(internalSlots, result) {
var symbols = internalSlots.dataLocaleData.numbers.symbols[internalSlots.numberingSystem];
var approximatelySign = symbols.approximatelySign;
result.push({ type: 'approximatelySign', value: approximatelySign });
return result;
}