Rocky_Mountain_Vending/.pnpm-store/v10/files/5d/afd332d131dfca573fa4854cacdc2d453c614214a5ace2329faad7f69446f80d46377f236804b26c3fae7a6f7d196dc03917706377b0b13262d6767a9d4180
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

15 lines
392 B
Text

"use strict";
exports.formatRelative = void 0;
const formatRelativeLocale = {
lastWeek: "eeee 'lalu pukul' p",
yesterday: "'Kemarin pukul' p",
today: "'Hari ini pukul' p",
tomorrow: "'Besok pukul' p",
nextWeek: "eeee 'pukul' p",
other: "P",
};
const formatRelative = (token, _date, _baseDate, _options) =>
formatRelativeLocale[token];
exports.formatRelative = formatRelative;