safeExtractSelectors function ✓ 100.0%
Last updated: 2026-03-05T11:49:57.418Z
Metrics
LOC: 7
Complexity: 2
Params: 1
Coverage: 100.0% (1/1 lines, 0x executed)
Signature
safeExtractSelectors(el: Element): : SmartSelector[]
Source Code
function safeExtractSelectors(el: Element): SmartSelector[] {
try {
return extractSmartSelectors(el);
} catch {
return [];
}
}
Dependencies (Outgoing)
| Target | Type |
|---|---|
| extractSmartSelectors | calls |
Impact (Incoming)
| Source | Type |
|---|---|
| buildStep | calls |