* Throws an exception for a missing environment variable.
(name: string)
| 336 | * Throws an exception for a missing environment variable. |
| 337 | */ |
| 338 | function missingEnvironmentVariable(name: string): never { |
| 339 | throw new Error(`Missing environment variable: ${name}`); |
| 340 | } |
no outgoing calls
no test coverage detected