UNPKG

react-day-picker

Version:

Customizable Date Picker for React

7 lines (6 loc) 273 B
import { toHebrewDate } from "../utils/dateConversion.js"; export function isSameMonth(dateLeft, dateRight) { const left = toHebrewDate(dateLeft); const right = toHebrewDate(dateRight); return left.year === right.year && left.monthIndex === right.monthIndex; }