(y)
| 2446 | } |
| 2447 | |
| 2448 | function createUTCDate (y) { |
| 2449 | var date = new Date(Date.UTC.apply(null, arguments)); |
| 2450 | if (y < 1970) { |
| 2451 | date.setUTCFullYear(y); |
| 2452 | } |
| 2453 | return date; |
| 2454 | } |
| 2455 | |
| 2456 | addFormatToken(0, ['YY', 2], 0, function () { |
| 2457 | return this.year() % 100; |
no outgoing calls
no test coverage detected