UNPKG

react-day-picker

Version:

Customizable Date Picker for React

6 lines (5 loc) 227 B
import { toGregorianDate, toHebrewDate } from "../utils/dateConversion.js"; export function startOfYear(date) { const hebrew = toHebrewDate(date); return toGregorianDate({ year: hebrew.year, monthIndex: 0, day: 1 }); }