UNPKG

react-day-picker

Version:

Customizable Date Picker for React

12 lines (11 loc) 317 B
import { toEthiopicDate, toGregorianDate } from "../utils/index.js"; /** * Start of year * * @param {Date} date - The original date * @returns {Date} The start of the year */ export function startOfYear(date) { const { year } = toEthiopicDate(date); return toGregorianDate({ year, month: 1, day: 1 }); }