()
| 479 | } |
| 480 | } |
| 481 | static clearRandomString() { |
| 482 | const randomStringDisplay = document.getElementById("randomStringDisplay"); |
| 483 | randomStringDisplay.classList.remove("fade-in"); |
| 484 | randomStringDisplay.classList.add("fade-out"); |
| 485 | setTimeout(() => { |
| 486 | randomStringDisplay.textContent = ""; |
| 487 | AppState.randomStringDisplayed = false; |
| 488 | }, 300); |
| 489 | } |
| 490 | } |
| 491 | class SearchController { |
| 492 | static validateSearchInput(query) { |
no outgoing calls
no test coverage detected