(target)
| 71 | } |
| 72 | |
| 73 | export function getTargetTouches(target) { |
| 74 | if (activeTouches.get(target) != null) { |
| 75 | return Array.from(activeTouches.get(target).values()); |
| 76 | } |
| 77 | return []; |
| 78 | } |
| 79 | |
| 80 | export function clear() { |
| 81 | activeTouches.clear(); |
no test coverage detected