* Read an analytics key. Empty/missing values are returned as the empty * string with NO log — analytics keys are legitimately absent in * non-production envs (the consumer providers no-op when the key is * empty), and the existing shell-docs/Dockerfile documents the same * behavior. Adding a pr
(envKey: string)
| 206 | * intentionally analytics-disabled environments. |
| 207 | */ |
| 208 | function readKey(envKey: string): string { |
| 209 | const value = readEnvPair(envKey); |
| 210 | return value !== undefined ? value : ""; |
| 211 | } |
no test coverage detected
searching dependent graphs…