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>
13 lines
398 B
Text
13 lines
398 B
Text
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.CurrencyDigits = CurrencyDigits;
|
|
var _262_1 = require("../262");
|
|
/**
|
|
* https://tc39.es/ecma402/#sec-currencydigits
|
|
*/
|
|
function CurrencyDigits(c, _a) {
|
|
var currencyDigitsData = _a.currencyDigitsData;
|
|
return (0, _262_1.HasOwnProperty)(currencyDigitsData, c)
|
|
? currencyDigitsData[c]
|
|
: 2;
|
|
}
|