A horizontal rule used to separate sections.
()
| 1702 | |
| 1703 | /** A horizontal rule used to separate sections. */ |
| 1704 | #uiDivider(): string { |
| 1705 | // Separators should recede behind content, so render them faint rather than |
| 1706 | // in a saturated color (default-blue is the least readable hue on dark terminals). |
| 1707 | return this.colors.dim("─".repeat(UI_DIVIDER_WIDTH)); |
| 1708 | } |
| 1709 | |
| 1710 | /** A branded title, e.g. `⬡ webpack build`. */ |
| 1711 | #uiHeader(title: string): string { |
no outgoing calls
no test coverage detected