UNPKG

react-day-picker

Version:

Customizable Date Picker for React

17 lines (16 loc) 594 B
import { daysInMonth } from "../utils/daysInMonth.js"; import { toEthiopicDate, toGregorianDate } from "../utils/index.js"; /** * Set year * * @param {Date} date - The original date * @param {number} year - The year to set * @returns {Date} The new date with the year set */ export function setYear(date, year) { const { month, day } = toEthiopicDate(date); // Check if the day is valid in the new year (handles leap year changes) const maxDays = daysInMonth(month, year); const newDay = Math.min(day, maxDays); return toGregorianDate({ year, month, day: newDay }); }