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>
12 lines
290 B
Text
12 lines
290 B
Text
"use strict";
|
|
exports.normalizeInterval = normalizeInterval;
|
|
var _index = require("./normalizeDates.cjs");
|
|
|
|
function normalizeInterval(context, interval) {
|
|
const [start, end] = (0, _index.normalizeDates)(
|
|
context,
|
|
interval.start,
|
|
interval.end,
|
|
);
|
|
return { start, end };
|
|
}
|