Rocky_Mountain_Vending/.pnpm-store/v10/files/6b/1da127d667b41df6d40264f090649bb097dc8468f4c50bf960b5409cc654257fe7672d3608ab1c24cc19e99baf036f4440f53e7626ecafb6ec34f7a775bc43
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
367 B
Text

"use strict";
exports.formatRelative = void 0;
const formatRelativeLocale = {
lastWeek: "eeee 'passat a' p",
yesterday: "'ièr a' p",
today: "'uèi a' p",
tomorrow: "'deman a' p",
nextWeek: "eeee 'a' p",
other: "P",
};
const formatRelative = (token, _date, _baseDate, _options) =>
formatRelativeLocale[token];
exports.formatRelative = formatRelative;