* Check if an element is inside the devtools panel
(element: Element)
| 57 | '[data-a11y-overlay]', |
| 58 | ] |
| 59 | |
| 60 | /** |
| 61 | * Check if an element is inside the devtools panel |
| 62 | */ |
| 63 | function isInsideDevtools(element: Element): boolean { |
| 64 | for (const selector of DEVTOOLS_SELECTORS) { |
| 65 | if (element.closest(selector)) { |
| 66 | return true |
| 67 | } |
| 68 | } |
| 69 | return false |
no outgoing calls
no test coverage detected