2021-05-09 12:06:18 +00:00
|
|
|
const leapYears = function(year) {
|
2022-01-23 20:17:39 +00:00
|
|
|
return year % 4 === 0 && ( year % 100 !== 0 || year % 400 === 0);
|
2021-05-10 08:08:31 +00:00
|
|
|
};
|
2017-08-25 18:47:05 +00:00
|
|
|
|
2021-05-10 08:08:31 +00:00
|
|
|
module.exports = leapYears;
|