UNPKG

date-fns-jalali

Version:

Modern JavaScript date utility library for jalali calendar

14 lines (12 loc) 296 B
import { toJalali } from "../_lib/jalali.mjs"; /** * * @param cleanDate {Date} * @returns {number} */ export function getMonth(cleanDate) { const gd = cleanDate.getDate(); const gm = cleanDate.getMonth() + 1; const gy = cleanDate.getFullYear(); return toJalali(gy, gm, gd).jm - 1; }