summaryrefslogtreecommitdiff
path: root/node_modules/moment/src/lib/utils/is-leap-year.js
blob: e399d9360f47d86cd45b84fbc6066694f81fa33c (plain) (blame)
1
2
3
export function isLeapYear(year) {
    return (year % 4 === 0 && year % 100 !== 0) || year % 400 === 0;
}