(date: Date, token: string)
| 67 | |
| 68 | // Hour [0-23] |
| 69 | H(date: Date, token: string): string { |
| 70 | return addLeadingZeros(date.getHours(), token.length); |
| 71 | }, |
| 72 | |
| 73 | // Minute |
| 74 | m(date: Date, token: string): string { |
nothing calls this directly
no test coverage detected