(date: Date, token: string)
| 72 | |
| 73 | // Minute |
| 74 | m(date: Date, token: string): string { |
| 75 | return addLeadingZeros(date.getMinutes(), token.length); |
| 76 | }, |
| 77 | |
| 78 | // Second |
| 79 | s(date: Date, token: string): string { |
nothing calls this directly
no test coverage detected