(year)
| 15798 | var ORDINAL_BASE = datetime(1970, 1, 1); |
| 15799 | var PY_WEEKDAYS = [6, 0, 1, 2, 3, 4, 5]; |
| 15800 | var isLeapYear = function(year) { |
| 15801 | return year % 4 === 0 && year % 100 !== 0 || year % 400 === 0; |
| 15802 | }; |
| 15803 | var isDate = function(value) { |
| 15804 | return value instanceof Date; |
| 15805 | }; |
no outgoing calls
no test coverage detected