mirror of
https://github.com/Ernous/TorrServerJellyfin.git
synced 2025-12-19 13:36:09 +05:00
6 lines
187 B
JavaScript
6 lines
187 B
JavaScript
export default () => {
|
|
if (typeof window === `undefined` || typeof navigator === `undefined`) return false
|
|
|
|
return /iPhone|iPad|iPod/i.test(navigator.userAgent || navigator.vendor)
|
|
}
|