is-leap-year.js 106 Bytes Raw Blame History Permalink 1 2 3 export function isLeapYear(year) { return (year % 4 === 0 && year % 100 !== 0) || year % 400 === 0; }