react-day-picker / src /hebrew /lib /endOfYear.ts
AbdulElahGwaith's picture
Upload folder using huggingface_hub
cf86710 verified
import {
daysInHebrewMonth,
monthsInHebrewYear,
} from "../utils/calendarMath.js";
import { toGregorianDate, toHebrewDate } from "../utils/dateConversion.js";
export function endOfYear(date: Date): Date {
const hebrew = toHebrewDate(date);
const lastMonth = monthsInHebrewYear(hebrew.year) - 1;
const day = daysInHebrewMonth(hebrew.year, lastMonth);
return toGregorianDate({ year: hebrew.year, monthIndex: lastMonth, day });
}