| 8 | const FONT = '12px monospace'; |
| 9 | |
| 10 | interface Column { |
| 11 | x: number; |
| 12 | y: number; |
| 13 | speed: number; |
| 14 | chars: number[]; |
| 15 | len: number; |
| 16 | phase: number; |
| 17 | } |
| 18 | |
| 19 | function rand(min: number, max: number) { |
| 20 | return Math.random() * (max - min) + min; |
nothing calls this directly
no outgoing calls
no test coverage detected