073bda56a233290b2f89f3d3de6c7b716fa28eef2d999c2880dbe9bd1de36a2794a597230aa4d708c41816fba536e4e11ece106f5f8467ef5cf37a2028595e 181 B

1234567
  1. export default (function (o, c) {
  2. var proto = c.prototype;
  3. proto.isLeapYear = function () {
  4. return this.$y % 4 === 0 && this.$y % 100 !== 0 || this.$y % 400 === 0;
  5. };
  6. });