Rocky_Mountain_Vending/.pnpm-store/v10/files/6c/17b967e655fc7e68dcb5e45da5af93c5d9428156a8ef2f7edbd102f07674fd1ac69c1e37a4f82f3d986960ff41a474f754020d0fd67eded62142c424733404
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

14 lines
366 B
Text

export const serializeFloat = (value) => {
if (value !== value) {
return "NaN";
}
switch (value) {
case Infinity:
return "Infinity";
case -Infinity:
return "-Infinity";
default:
return value;
}
};
export const serializeDateTime = (date) => date.toISOString().replace(".000Z", "Z");