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

7 lines
273 B
JavaScript

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;
}