(date)
| 17252 | } |
| 17253 | |
| 17254 | function timeZoneGetter(date) { |
| 17255 | var zone = -1 * date.getTimezoneOffset(); |
| 17256 | var paddedZone = (zone >= 0) ? "+" : ""; |
| 17257 | |
| 17258 | paddedZone += padNumber(Math[zone > 0 ? 'floor' : 'ceil'](zone / 60), 2) + |
| 17259 | padNumber(Math.abs(zone % 60), 2); |
| 17260 | |
| 17261 | return paddedZone; |
| 17262 | } |
| 17263 | |
| 17264 | function getFirstThursdayOfYear(year) { |
| 17265 | // 0 = index of January |
nothing calls this directly
no test coverage detected