(key: string, settings: Settings)
| 447 | * Check if a setting doesn't exist in current scope (should be greyed out) |
| 448 | */ |
| 449 | export function isDefaultValue(key: string, settings: Settings): boolean { |
| 450 | return !settingExistsInScope(key, settings); |
| 451 | } |
| 452 | |
| 453 | /** |
| 454 | * Check if a setting value is inherited (not set at current scope) |
no test coverage detected