(option: Option<T>)
| 15 | import type { Option } from './select.js'; |
| 16 | |
| 17 | function getLabel<T>(option: Option<T>) { |
| 18 | return option.label ?? String(option.value ?? ''); |
| 19 | } |
| 20 | |
| 21 | function getFilteredOption<T>(searchText: string, option: Option<T>): boolean { |
| 22 | if (!searchText) { |