| 8 | |
| 9 | const isTouch = typeof window !== 'undefined' && ('ontouchstart' in window || navigator.maxTouchPoints > 0); |
| 10 | const deg2rad = d => (d * Math.PI) / 180; |
| 11 | const DECIDE = 8; |
| 12 | const ROTATE_SPEED = 0.005; |
| 13 | const INERTIA = 0.925; |
no outgoing calls
no test coverage detected