(event)
| 16 | |
| 17 | // Update the x and y displays to show the current mouse position. |
| 18 | const mousePosition = (event) => { |
| 19 | posX.innerText = event.pageX; |
| 20 | posY.innerText = event.pageY; |
| 21 | }; |
| 22 | |
| 23 | window.addEventListener("mousemove", mousePosition, false); |
| 24 |
nothing calls this directly
no outgoing calls
no test coverage detected