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

13 lines
294 B
Text

import { toJalali } from "../_lib/jalali.js";
/**
*
* @param cleanDate {Date}
* @returns {number}
*/
export function getFullYear(cleanDate) {
const gd = cleanDate.getDate();
const gm = cleanDate.getMonth() + 1;
const gy = cleanDate.getFullYear();
return toJalali(gy, gm, gd).jy;
}