(languages)
| 165 | * @param {string[]} languages |
| 166 | */ |
| 167 | export function updateDefaultLanguageOptions(languages) { |
| 168 | /** |
| 169 | * @type {HTMLOptionElement[]} |
| 170 | */ |
| 171 | const options = defaultLanguageSelect.children; |
| 172 | |
| 173 | for (const option of options) { |
| 174 | option.style.display = languages.includes(option.value) |
| 175 | ? '' |
| 176 | : 'none'; |
| 177 | } |
| 178 | } |
| 179 | |
| 180 | /** |
| 181 | * @param {boolean} found |
no outgoing calls
no test coverage detected
searching dependent graphs…