()
| 63 | } |
| 64 | |
| 65 | function hideConfigError() { |
| 66 | if (errorElement) { |
| 67 | errorElement.style.display = "none"; |
| 68 | errorElement.textContent = ""; |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | function isValidSelector(selector) { |
| 73 | if (!selector || typeof selector !== "string") return false; |
no outgoing calls
no test coverage detected