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