(s: string | null)
| 33 | |
| 34 | /** Extracts the numeric value of a pixel size string like '123px'. */ |
| 35 | const pxStringToFloat = (s: string | null) => (s ? parseFloat(s) : 0); |
| 36 | const startingWindowWidth = window.innerWidth; |
| 37 | const startingWindowHeight = window.innerHeight; |
| 38 |
no outgoing calls
no test coverage detected
searching dependent graphs…