(key: string)
| 199 | } |
| 200 | |
| 201 | export const isSecretEnvKey = (key: string): boolean => { |
| 202 | return SECRET_KEY_REGEX.test(key) |
| 203 | } |
| 204 | |
| 205 | export const maskSecretValue = (value: string): string => { |
| 206 | if (!value) { |
no outgoing calls
no test coverage detected