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

8 lines
329 B
JavaScript

import { daysInHebrewMonth } from "../utils/calendarMath.js";
import { toGregorianDate, toHebrewDate } from "../utils/dateConversion.js";
export function endOfMonth(date) {
const hebrew = toHebrewDate(date);
const day = daysInHebrewMonth(hebrew.year, hebrew.monthIndex);
return toGregorianDate({ ...hebrew, day });
}