react-day-picker / src /hebrew /lib /startOfYear.ts
AbdulElahGwaith's picture
Upload folder using huggingface_hub
cf86710 verified
import { toGregorianDate, toHebrewDate } from "../utils/dateConversion.js";
export function startOfYear(date: Date): Date {
const hebrew = toHebrewDate(date);
return toGregorianDate({ year: hebrew.year, monthIndex: 0, day: 1 });
}