UNPKG

react-day-picker

Version:

Customizable Date Picker for React

13 lines (12 loc) 401 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.startOfMonth = startOfMonth; const conversion_js_1 = require("../utils/conversion.js"); function startOfMonth(date) { const hijri = (0, conversion_js_1.toHijriDate)(date); return (0, conversion_js_1.toGregorianDate)({ year: hijri.year, monthIndex: hijri.monthIndex, day: 1, }); }