(host: string, database: string)
| 84 | * Format host and database into a single string |
| 85 | */ |
| 86 | export function formatHostDatabase(host: string, database: string): string { |
| 87 | return host |
| 88 | ? database ? `${host}/${database}` : host |
| 89 | : database || ""; |
| 90 | } |
| 91 | |
| 92 | /** |
| 93 | * Generate the startup table showing sources and their tools |
no outgoing calls
no test coverage detected