uni-ticket-system/node_modules/licia/isLeapYear.js

6 lines
126 B
JavaScript
Raw Normal View History

2023-12-05 02:11:10 +00:00
exports = function(year) {
return year % 400 === 0 || (year % 4 === 0 && year % 100 !== 0);
};
module.exports = exports;