Rocky_Mountain_Vending/.pnpm-store/v10/files/d6/5ca03524d16bea4bb7d871fa365bcdbf554f11fbe3f6022819a4621056afe0f49e858ce0fe208a744d60f236c4fc0df83ef4413036733c175959a63e924b7e
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
378 B
Text

"use strict";
exports.formatRelative = void 0;
const formatRelativeLocale = {
lastWeek: "'i' EEEE's kl.' p",
yesterday: "'igår kl.' p",
today: "'idag kl.' p",
tomorrow: "'imorgon kl.' p",
nextWeek: "EEEE 'kl.' p",
other: "P",
};
const formatRelative = (token, _date, _baseDate, _options) =>
formatRelativeLocale[token];
exports.formatRelative = formatRelative;