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>
8 lines
379 B
Text
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);
|