%PDF- %PDF-
| Direktori : /home/tjamichg/cursos.tjamich.gob.mx/web/assets/moment/src/lib/utils/ |
| Current File : /home/tjamichg/cursos.tjamich.gob.mx/web/assets/moment/src/lib/utils/is-leap-year.js |
export function isLeapYear(year) {
return (year % 4 === 0 && year % 100 !== 0) || year % 400 === 0;
}