(select: HTMLSelectElement | null)
| 12 | } |
| 13 | |
| 14 | export function clearSelectValues(select: HTMLSelectElement | null): void { |
| 15 | if (!select) return; |
| 16 | Array.from(select.options).forEach((option) => { |
| 17 | option.selected = false; |
| 18 | }); |
| 19 | } |
no outgoing calls
no test coverage detected