(pad?: string)
| 61 | } |
| 62 | |
| 63 | export function logo(pad?: string) { |
| 64 | const indent = pad ?? "" |
| 65 | const lines = buildLines() |
| 66 | return lines |
| 67 | .map((line) => indent + padLine(line)) |
| 68 | .join(EOL) |
| 69 | .trimEnd() |
| 70 | } |
| 71 | |
| 72 | function buildLines() { |
| 73 | const accent = Style.TEXT_INFO_BOLD |
nothing calls this directly
no test coverage detected