(date: Date, token: string)
| 77 | |
| 78 | // Second |
| 79 | s(date: Date, token: string): string { |
| 80 | return addLeadingZeros(date.getSeconds(), token.length); |
| 81 | }, |
| 82 | |
| 83 | // Fraction of second |
| 84 | S(date: Date, token: string): string { |
nothing calls this directly
no test coverage detected