(date: Date, token: string)
| 62 | |
| 63 | // Hour [1-12] |
| 64 | h(date: Date, token: string): string { |
| 65 | return addLeadingZeros(date.getHours() % 12 || 12, token.length); |
| 66 | }, |
| 67 | |
| 68 | // Hour [0-23] |
| 69 | H(date: Date, token: string): string { |
nothing calls this directly
no test coverage detected