(s: string, width: number)
| 583 | } |
| 584 | |
| 585 | function pad(s: string, width: number): string { |
| 586 | if (s.length >= width) return s; |
| 587 | return s + ' '.repeat(width - s.length); |
| 588 | } |
| 589 | |
| 590 | function renderUpdateText(r: CliUpdateProjectResponse): string { |
| 591 | return [ |
no outgoing calls
no test coverage detected