| Current Path : /proc/thread-self/root/var/www/fidelitychain/www/node_modules/moment/src/lib/utils/ |
| Current File : //proc/thread-self/root/var/www/fidelitychain/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;
}