(vars: Record<string, string>)
| 84 | * Normalizes environment variables by ensuring they are prefixed with SIMCTL_CHILD_. |
| 85 | */ |
| 86 | export function normalizeSimctlChildEnv(vars: Record<string, string>): Record<string, string> { |
| 87 | return normalizeEnvWithPrefix('SIMCTL_CHILD_', vars); |
| 88 | } |
no test coverage detected