(title: string, symbols: { prefix: boolean })
| 387 | } |
| 388 | |
| 389 | #formatGroupTitle(title: string, symbols: { prefix: boolean }): string { |
| 390 | const text = symbols.prefix |
| 391 | ? `${this.#groupSymbols.start} ${title}` |
| 392 | : title; |
| 393 | return ansis.bold(this.#colorize(text, this.#groupColor)); |
| 394 | } |
| 395 | |
| 396 | // eslint-disable-next-line max-lines-per-function |
| 397 | async #spinner<T>( |
no test coverage detected