(expression: string)
| 76 | } |
| 77 | |
| 78 | export function tryParseSelectorChain(expression: string): SelectorChain | null { |
| 79 | try { |
| 80 | return parseSelectorChain(expression); |
| 81 | } catch { |
| 82 | return null; |
| 83 | } |
| 84 | } |
| 85 | |
| 86 | export function isSelectorToken(token: string): boolean { |
| 87 | const trimmed = token.trim(); |
no test coverage detected
searching dependent graphs…