()
| 880 | let isDragging = false |
| 881 | let isMouseDown = true |
| 882 | const onMouseMove = () => { |
| 883 | isDragging = true |
| 884 | clearTimeout(state.pressTimer) |
| 885 | progressBarremove() |
| 886 | } |
| 887 | const onMouseUp = () => { |
| 888 | isMouseDown = false |
| 889 | clearTimeout(state.pressTimer) |
nothing calls this directly
no test coverage detected