Convert CSS hex color string ('#3b82f6') to numeric (0x3b82f6).
(hex: string)
| 119 | |
| 120 | /** Convert CSS hex color string ('#3b82f6') to numeric (0x3b82f6). */ |
| 121 | function hexToNum(hex: string): number { |
| 122 | if (hex.startsWith('#')) return parseInt(hex.slice(1), 16); |
| 123 | return EDGE_FALLBACK_COLOR; |
| 124 | } |
| 125 | |
| 126 | // ─── Geometry helpers for edge hit-testing ────────────────────────────── |
| 127 |
no outgoing calls
no test coverage detected