(e)
| 157 | }; |
| 158 | let touchStartY = null; |
| 159 | const onTouchStart = (e) => { |
| 160 | touchStartY = e.touches[0].clientY; |
| 161 | }; |
| 162 | const onTouchMove = (e) => { |
| 163 | if (touchStartY === null) return; |
| 164 | const dy = touchStartY - e.touches[0].clientY; |
nothing calls this directly
no outgoing calls
no test coverage detected