Your IP : 216.73.216.220


Current Path : /var/www/recommendations/www/node_modules/moment/src/lib/utils/
Upload File :
Current File : //var/www/recommendations/www/node_modules/moment/src/lib/utils/is-leap-year.js

export function isLeapYear(year) {
    return (year % 4 === 0 && year % 100 !== 0) || year % 400 === 0;
}