更新
This commit is contained in:
+5
@@ -0,0 +1,5 @@
|
||||
exports = function(year) {
|
||||
return year % 400 === 0 || (year % 4 === 0 && year % 100 !== 0);
|
||||
};
|
||||
|
||||
module.exports = exports;
|
||||
Reference in New Issue
Block a user