This commit is contained in:
5
node_modules/licia/isLeapYear.js
generated
vendored
Normal file
5
node_modules/licia/isLeapYear.js
generated
vendored
Normal file
@@ -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