Rocky_Mountain_Vending/.pnpm-store/v10/files/df/ffd22ad09733a5c76eec7e9d79a19b1d49a6c51f0027c4d23483c4ab6cf737f852b98d744d5dda21e215f2a0e22ef0ef200abebaa97bb9d88842baeda4a2f3
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

29 lines
710 B
Text

"use strict";
exports.formatRelative = void 0;
const formatRelativeLocale = {
lastWeek: "'el' eeee 'pasado a la' p",
yesterday: "'ayer a la' p",
today: "'hoy a la' p",
tomorrow: "'mañana a la' p",
nextWeek: "eeee 'a la' p",
other: "P",
};
const formatRelativeLocalePlural = {
lastWeek: "'el' eeee 'pasado a las' p",
yesterday: "'ayer a las' p",
today: "'hoy a las' p",
tomorrow: "'mañana a las' p",
nextWeek: "eeee 'a las' p",
other: "P",
};
const formatRelative = (token, date, _baseDate, _options) => {
if (date.getHours() !== 1) {
return formatRelativeLocalePlural[token];
} else {
return formatRelativeLocale[token];
}
};
exports.formatRelative = formatRelative;