Files
echo-nexus/node_modules/react-day-picker/dist/esm/hebrew/lib/endOfMonth.js
T

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 });
}