react-day-picker
Version:
Customizable Date Picker for React
12 lines (11 loc) • 379 B
JavaScript
import { toGregorianDate, toHijriDate } from "../utils/conversion.js";
import { getDaysInMonth } from "../utils/daysInMonth.js";
export function endOfMonth(date) {
const hijri = toHijriDate(date);
const day = getDaysInMonth(hijri.year, hijri.monthIndex);
return toGregorianDate({
year: hijri.year,
monthIndex: hijri.monthIndex,
day,
});
}