UNPKG

@minix-iot/ui

Version:

基于Vue的移动端轻量级UI组件库

10 lines (8 loc) 212 B
export class DateExtension { static IsLeapYearEx(date) { return this.IsLeapYear(date.getFullYear()); } static IsLeapYear(year) { return (year % 4 == 0 && year % 100 != 0) || year % 400 == 0; } }