()
| 6 | import Choices from "choices.js" |
| 7 | |
| 8 | function getErrorMessage() { |
| 9 | const errorElement = document.querySelector('.alert-danger.db-error'); |
| 10 | return errorElement ? errorElement.textContent.trim() : null; |
| 11 | } |
| 12 | |
| 13 | function debounce(func, delay) { |
| 14 | let timeout; |
no outgoing calls
no test coverage detected