(/** @type {string} */ key, value)
| 4 | |
| 5 | export const getEnv = (/** @type {string} */ key) => process.env[key]; |
| 6 | export const setEnv = (/** @type {string} */ key, value) => { |
| 7 | process.env[key] = value; |
| 8 | }; |
| 9 | |
| 10 | /** |
| 11 | * Check if the running file was run directly. |
no outgoing calls