版博士V2.0程序
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

7 satır
181 B

  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. });