UNPKG

react-day-picker

Version:

Customizable Date Picker for React

10 lines (9 loc) 248 B
import { toGregorianDate, toHijriDate } from "../utils/conversion.js"; export function startOfYear(date) { const hijri = toHijriDate(date); return toGregorianDate({ year: hijri.year, monthIndex: 0, day: 1, }); }