/
githubmirror
/
reveal.js
Обзор
Документация
Войти
/
githubmirror
/
reveal.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
js/utils/device.ts
9 строк
295 B
Hakim El Hattab
migrated utils to ts, exclude filendings in imports
08 июн 2025, 22:57
08 июн 2025, 22:57
a413083
Код
Авторство
О чём код?
const UA = navigator.userAgent; export const isMobile = /(iphone|ipod|ipad|android)/gi.test(UA) || (navigator.platform === 'MacIntel' && navigator.maxTouchPoints > 1); // iPadOS export const isChrome = /chrome/i.test(UA) && !/edge/i.test(UA); export const isAndroid = /android/gi.test(UA);