(env: NodeJS.ProcessEnv, key: string)
| 100 | const TRUE_ENV_VALUES = new Set(["1", "true", "yes", "on"]); |
| 101 | const FALSE_ENV_VALUES = new Set(["0", "false", "no", "off"]); |
| 102 | |
| 103 | function hasEnvOverride(env: NodeJS.ProcessEnv, key: string): boolean { |
| 104 | return Object.prototype.hasOwnProperty.call(env, key); |
| 105 | } |
| 106 | |
| 107 | function normalizeOptionalString(value: string | undefined): string | undefined { |
no outgoing calls
no test coverage detected