(connectionName: string, suffix: string)
| 72 | } |
| 73 | |
| 74 | export function toEnvKey(connectionName: string, suffix: string): string { |
| 75 | return `${connectionName.toUpperCase().replace(/-/g, '_')}_${suffix}`; |
| 76 | } |
| 77 | |
| 78 | export function generateConnectionName(platform: string, existing: Record<string, unknown>): string { |
| 79 | if (!existing[platform]) { |
no outgoing calls
no test coverage detected