(event)
| 404 | } |
| 405 | } |
| 406 | const addHighlight = (event) => { |
| 407 | event.preventDefault(); |
| 408 | event.currentTarget.classList.add("highlight"); |
| 409 | }; |
| 410 | const removeHighlight = (event) => { |
| 411 | event.preventDefault(); |
| 412 | event.currentTarget.classList.remove("highlight"); |
nothing calls this directly
no outgoing calls
no test coverage detected