(selector: string)
| 229 | } |
| 230 | |
| 231 | export function formatSelectorLocation(selector: string): string { |
| 232 | const lastSegment = selector.split(/\s*>>?\s*/).at(-1) ?? selector; |
| 233 | return selector === lastSegment ? selector : UNICODE_ELLIPSIS + lastSegment; |
| 234 | } |
no outgoing calls
no test coverage detected