UNPKG

react-day-picker

Version:

Customizable Date Picker for React

9 lines (8 loc) 431 B
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 }); }