* Shorthand to extract an environment variable. * @param {string} key * @return {string}
(key)
| 14 | * @return {string} |
| 15 | */ |
| 16 | function env(key) { |
| 17 | return process.env[key] ?? ''; |
| 18 | } |
| 19 | |
| 20 | /** |
| 21 | * Returns true if this is a CI build. |
no outgoing calls
no test coverage detected