Rocky_Mountain_Vending/.pnpm-store/v10/files/12/574361f81572e156ffd2ae426830343d7cd68ec5b05453b9c702e5653cf4bc20d7ba70ae17c88680a11ebed09ed85956486250abf948e2c2afec95d8863d5b
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

8 lines
379 B
Text

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.NEGATIVE_ZERO = exports.ZERO = exports.TEN = void 0;
var tslib_1 = require("tslib");
var decimal_js_1 = tslib_1.__importDefault(require("decimal.js"));
exports.TEN = new decimal_js_1.default(10);
exports.ZERO = new decimal_js_1.default(0);
exports.NEGATIVE_ZERO = new decimal_js_1.default(-0);