Rocky_Mountain_Vending/.pnpm-store/v10/files/26/591267e239c3d402b1576cb12ccc4f66d3f672758c1c407def1b046e3bbbfe9929290e49129db503bc74233f370f3a92a329b3d763d9775de23ecd52a6b925
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

29 lines
No EOL
708 B
Text

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = defaultLocale;
exports.formatPrefix = exports.format = void 0;
var _locale = _interopRequireDefault(require("./locale.js"));
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
var locale;
var format;
exports.format = format;
var formatPrefix;
exports.formatPrefix = formatPrefix;
defaultLocale({
thousands: ",",
grouping: [3],
currency: ["$", ""]
});
function defaultLocale(definition) {
locale = (0, _locale.default)(definition);
exports.format = format = locale.format;
exports.formatPrefix = formatPrefix = locale.formatPrefix;
return locale;
}