Files
2026-05-30 19:59:39 -03:00

9 lines
431 B
JavaScript

import { daysInHebrewMonth, monthsInHebrewYear, } from "../utils/calendarMath.js";
import { toGregorianDate, toHebrewDate } from "../utils/dateConversion.js";
export function endOfYear(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 });
}