UNPKG

react-day-picker

Version:

Customizable Date Picker for React

12 lines (11 loc) 350 B
import { toGregorianDate, toHijriDate } from "../utils/conversion.js"; import { getDaysInMonth } from "../utils/daysInMonth.js"; export function endOfYear(date) { const hijri = toHijriDate(date); const day = getDaysInMonth(hijri.year, 11); return toGregorianDate({ year: hijri.year, monthIndex: 11, day, }); }