Files
2026-05-30 19:59:39 -03:00

9 lines
261 B
TypeScript

/**
* Is same month
*
* @param {Date} dateLeft - The first date
* @param {Date} dateRight - The second date
* @returns {boolean} True if the two dates are in the same month
*/
export declare function isSameMonth(dateLeft: Date, dateRight: Date): boolean;