filterSettingsEnv function

Map<String, String> filterSettingsEnv(
  1. Map<String, String>? env
)

Compose the strip filters applied to every settings-sourced env object.

Implementation

Map<String, String> filterSettingsEnv(Map<String, String>? env) {
  return _withoutCcdSpawnEnvKeys(
    _withoutHostManagedProviderVars(_withoutSSHTunnelVars(env)),
  );
}