UNPKG

react-day-picker

Version:

Customizable Date Picker for React

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