()
| 63 | } |
| 64 | |
| 65 | export function getTouches() { |
| 66 | const touches = []; |
| 67 | activeTouches.forEach((_, target) => { |
| 68 | touches.push(...getTargetTouches(target)); |
| 69 | }); |
| 70 | return touches; |
| 71 | } |
| 72 | |
| 73 | export function getTargetTouches(target) { |
| 74 | if (activeTouches.get(target) != null) { |
nothing calls this directly
no test coverage detected