(date: Date, token: string)
| 39 | |
| 40 | // Day of the month |
| 41 | d(date: Date, token: string): string { |
| 42 | return addLeadingZeros(date.getDate(), token.length); |
| 43 | }, |
| 44 | |
| 45 | // AM or PM |
| 46 | a(date: Date, token: string): string { |
nothing calls this directly
no test coverage detected