(parsed: ParsedSearchOperators)
| 93 | * Check if parsed operators has any content |
| 94 | */ |
| 95 | export function hasSearchOperators(parsed: ParsedSearchOperators): boolean { |
| 96 | return !!(parsed.name?.length || parsed.description?.length || parsed.keywords?.length) |
| 97 | } |
| 98 | |
| 99 | /** |
| 100 | * Remove a keyword from a search query string. |
no outgoing calls
no test coverage detected