(value: string)
| 182 | if (match.kind === 'text') return true |
| 183 | |
| 184 | const normalize = (value: string) => (caseSensitive ? value : value.toLowerCase()) |
| 185 | const searchable = |
| 186 | match.resource?.kind === 'workflow-reference' || match.resource?.kind === 'environment' |
| 187 | ? [match.displayLabel, match.rawValue, match.searchText] |
no outgoing calls
no test coverage detected