(errorMessage: string)
| 19 | import https from 'https'; |
| 20 | |
| 21 | function throwError(errorMessage: string): never { |
| 22 | throw new Error(errorMessage); |
| 23 | } |
| 24 | |
| 25 | function getFromEnvironment(key: string) { |
| 26 | return ( |
no outgoing calls
no test coverage detected