react-day-picker
Version:
Customizable Date Picker for React
13 lines (12 loc) • 352 B
JavaScript
;
/**
* Checks if a given Ethiopic year is a leap year.
*
* @param year - The Ethiopic year.
* @returns True if the year is a leap year; otherwise, false.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.isEthiopicLeapYear = isEthiopicLeapYear;
function isEthiopicLeapYear(year) {
return year % 4 === 3;
}