UNPKG

@daysnap/utils

Version:
9 lines (7 loc) 142 B
// src/isLeapYear.ts function isLeapYear(year) { return year % 400 === 0 || year % 100 !== 0 && year % 4 === 0; } export { isLeapYear };