(date)
| 16982 | } |
| 16983 | |
| 16984 | function timeZoneGetter(date) { |
| 16985 | var zone = -1 * date.getTimezoneOffset(); |
| 16986 | var paddedZone = (zone >= 0) ? "+" : ""; |
| 16987 | |
| 16988 | paddedZone += padNumber(Math[zone > 0 ? 'floor' : 'ceil'](zone / 60), 2) + |
| 16989 | padNumber(Math.abs(zone % 60), 2); |
| 16990 | |
| 16991 | return paddedZone; |
| 16992 | } |
| 16993 | |
| 16994 | function getFirstThursdayOfYear(year) { |
| 16995 | // 0 = index of January |
nothing calls this directly
no test coverage detected