(value: string | undefined, query: string)
| 36 | } |
| 37 | |
| 38 | function includesQuery(value: string | undefined, query: string): boolean { |
| 39 | return value?.toLowerCase().includes(query) ?? false |
| 40 | } |
| 41 | |
| 42 | function itemMatches(item: SettingsSearchItem, query: string): boolean { |
| 43 | return ( |
no outgoing calls
no test coverage detected