Update calendar.vue

This commit is contained in:
Acid Chicken (硫酸鶏) 2018-07-27 18:28:06 +09:00 committed by GitHub
parent ca1001db65
commit 0aeb704585

View file

@ -35,7 +35,7 @@ import Vue from 'vue';
const eachMonthDays = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
function isLeapYear(year) {
return !(year % (year % 25 ? 4 : 16));
return !(year & (year % 25 ? 3 : 5));
}
export default Vue.extend({