(a, b)
| 71 | // --------------------------------------------------------------------------- |
| 72 | |
| 73 | function dist(a, b) { |
| 74 | return Math.hypot(a.x - b.x, a.y - b.y); |
| 75 | } |
| 76 | |
| 77 | function hideWidget(w) { |
| 78 | if (!w) return; |
no outgoing calls
no test coverage detected