Files
echo-nexus/node_modules/react-day-picker/dist/esm/hebrew/lib/startOfYear.js
T

6 lines
227 B
JavaScript

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