Rocky_Mountain_Vending/.pnpm-store/v10/files/33/0833e1c58ca16e4bc69cb39a88fcbf8a5823c3f52f828513fda7cb6fc34016f9ea1778283a55f173b4dceb6abddaf260c96dfc920bcb70005202b625416435
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

10 lines
182 B
Text

import { isLeapJalaliYear } from "../_lib/jalali.js";
/**
*
* @param year {number}
* @returns {boolean}
*/
export function isLeapYear(year) {
return isLeapJalaliYear(year);
}