(win: Window)
| 64 | const isIphone = (win: Window) => testUserAgent(win, /iPhone/i); |
| 65 | |
| 66 | const isIOS = (win: Window) => testUserAgent(win, /iPhone|iPod/i) || isIpad(win); |
| 67 | |
| 68 | const isAndroid = (win: Window) => testUserAgent(win, /android|sink/i); |
| 69 |
nothing calls this directly
no test coverage detected