Rocky_Mountain_Vending/.pnpm-store/v10/files/29/9e7c994a09bf0ef3e886d28ff08eb4bd8379da72db2e00a6d2de8aa73e34a2ac5daeefff188dbddf5393bb7c8cec5e7922e4f25fa38df064acc027c9005f50
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

15 lines
334 B
Text

"use strict";
exports.getDate = getDate;
var _index = require("../_lib/jalali.cjs");
/**
*
* @param cleanDate {Date}
* @returns {number}
*/
function getDate(cleanDate) {
const gd = cleanDate.getDate();
const gm = cleanDate.getMonth() + 1;
const gy = cleanDate.getFullYear();
return (0, _index.toJalali)(gy, gm, gd).jd;
}