4212870be35182c7aae026fee7d9528bdbcbc95d
[platform/framework/web/crosswalk-tizen.git] /
1 var isDate = require('../lang/isDate');
2
3     /**
4      * checks if it's a leap year
5      */
6     function isLeapYear(fullYear){
7         if (isDate(fullYear)) {
8             fullYear = fullYear.getFullYear();
9         }
10         return fullYear % 400 === 0 || (fullYear % 100 !== 0 && fullYear % 4 === 0);
11     }
12
13     module.exports = isLeapYear;
14
15