(n: number)
| 517 | } |
| 518 | |
| 519 | function pad(n: number): string { |
| 520 | return n.toString().padStart(4, "0"); |
| 521 | } |
| 522 | |
| 523 | function trimTrailingSlash(prefix: string): string { |
| 524 | return prefix.endsWith("/") ? prefix.slice(0, -1) : prefix; |
no outgoing calls
no test coverage detected