Rocky_Mountain_Vending/.pnpm-store/v10/files/3b/1bee45b66a743c477413c2702c1e1f476fc5817c0045e953be7ad34ded592eff5b2daad8479a0b3b3792d44fa874a7066a728a69beaa7cfaa6265561a0eeaa
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

12 lines
224 B
Text

"use strict";
exports.isLeapYear = isLeapYear;
var _index = require("../_lib/jalali.cjs");
/**
*
* @param year {number}
* @returns {boolean}
*/
function isLeapYear(year) {
return (0, _index.isLeapJalaliYear)(year);
}