Rocky_Mountain_Vending/.pnpm-store/v10/files/91/8cd2b9bd8e3dd8a05c5a385ecf60becdb811192ade74565d47cef496da43907514ab68e8ab07bbabf552d14e78b3ff539fa2d05b4e5ad42828ba081a258167
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

6 lines
215 B
Text

import { normalizeDates } from "./normalizeDates.js";
export function normalizeInterval(context, interval) {
const [start, end] = normalizeDates(context, interval.start, interval.end);
return { start, end };
}