scripts.node_modules.moment.src.lib.utils.is-leap-year.js Maven / Gradle / Ivy
The newest version!
export function isLeapYear(year) {
return (year % 4 === 0 && year % 100 !== 0) || year % 400 === 0;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy