| 1 | import { useEffect, useState } from 'react' |
| 2 | |
| 3 | export interface ScreenSize { |
| 4 | width: number |
| 5 | height: number |
| 6 | isMobile: boolean |
| 7 | } |
| 8 | |
| 9 | export function isUndefined(value: unknown): value is undefined { |
| 10 | return typeof value === 'undefined' |
nothing calls this directly
no outgoing calls
no test coverage detected