UNPKG

@daysnap/utils

Version:
8 lines (6 loc) 167 B
/** * 判断是否是闰年 * 规则:四年一闰,百年不闰,四百年再闰 */ declare function isLeapYear(year: number): boolean; export { isLeapYear };