储能智慧云小程序
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

index.js 181B

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