@mantine/dates
Version:
Calendars, date and time pickers based on Mantine components
10 lines (9 loc) • 354 B
JavaScript
"use client";
import dayjs from "dayjs";
//#region packages/@mantine/dates/src/components/Month/is-before-max-date/is-before-max-date.ts
function isBeforeMaxDate(date, maxDate) {
return maxDate ? dayjs(date).isBefore(dayjs(maxDate).add(1, "day"), "day") : true;
}
//#endregion
export { isBeforeMaxDate };
//# sourceMappingURL=is-before-max-date.mjs.map