UNPKG

181 BJavaScriptView Raw
1export default (function (o, c) {
2 var proto = c.prototype;
3
4 proto.isLeapYear = function () {
5 return this.$y % 4 === 0 && this.$y % 100 !== 0 || this.$y % 400 === 0;
6 };
7});
\No newline at end of file