(projectPath: string)
| 2274 | private static readonly GLOBAL_SECRETS_KEY = "__global__"; |
| 2275 | |
| 2276 | private static normalizeSecretsProjectPath(projectPath: string): string { |
| 2277 | return stripTrailingSlashes(projectPath); |
| 2278 | } |
| 2279 | |
| 2280 | private static isSecretValue(value: unknown): value is Secret["value"] { |
| 2281 | if (typeof value === "string") { |
no test coverage detected