Rocky_Mountain_Vending/.pnpm-store/v10/files/c2/650e6cdca63b01178d54d984b4aa9779695951dee241d60ef8f4c384c7976cdefcae48ba26a6315ad86a83a3e9a9c889612c561c52298855213b93f03ca5a9
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

31 lines
No EOL
975 B
Text

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _formatDecimal = _interopRequireDefault(require("./formatDecimal.js"));
var _formatPrefixAuto = _interopRequireDefault(require("./formatPrefixAuto.js"));
var _formatRounded = _interopRequireDefault(require("./formatRounded.js"));
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
var _default = {
"%": (x, p) => (x * 100).toFixed(p),
"b": x => Math.round(x).toString(2),
"c": x => x + "",
"d": _formatDecimal.default,
"e": (x, p) => x.toExponential(p),
"f": (x, p) => x.toFixed(p),
"g": (x, p) => x.toPrecision(p),
"o": x => Math.round(x).toString(8),
"p": (x, p) => (0, _formatRounded.default)(x * 100, p),
"r": _formatRounded.default,
"s": _formatPrefixAuto.default,
"X": x => Math.round(x).toString(16).toUpperCase(),
"x": x => Math.round(x).toString(16)
};
exports.default = _default;