(event)
| 37 | } |
| 38 | |
| 39 | function getPositionX(event) { |
| 40 | return event.type.includes('mouse') ? event.pageX : event.touches[0].clientX |
| 41 | } |
| 42 | |
| 43 | // use a HOF so we have index in a closure |
| 44 | function touchStart(index) { |
no outgoing calls
no test coverage detected