()
| 9 | * so the window resolution is not used in Safari 17. |
| 10 | */ |
| 11 | export default function getScreenResolution(): ScreenResolution | undefined { |
| 12 | if (isWebKit() && isWebKit616OrNewer() && isSafariWebKit()) { |
| 13 | return undefined |
| 14 | } |
| 15 | |
| 16 | return getUnstableScreenResolution() |
| 17 | } |
| 18 | |
| 19 | /** |
| 20 | * A version of the entropy source without stabilization. |
no test coverage detected
searching dependent graphs…