mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 11:43:09 +02:00
Merge pull request #2009 from acid-chicken/acid-chicken-patch-1
Minify Mk-II
This commit is contained in:
commit
a880f5cbb8
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ import Vue from 'vue';
|
||||||
const eachMonthDays = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
|
const eachMonthDays = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
|
||||||
|
|
||||||
function isLeapYear(year) {
|
function isLeapYear(year) {
|
||||||
return !(year % (year % 25 ? 4 : 16));
|
return !(year & (year % 25 ? 3 : 5));
|
||||||
}
|
}
|
||||||
|
|
||||||
export default Vue.extend({
|
export default Vue.extend({
|
||||||
|
|
Loading…
Reference in a new issue