mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 09:49:28 +02:00
8 lines
441 B
JavaScript
8 lines
441 B
JavaScript
import window from "./global/window";
|
|
|
|
const ua = (window.navigator && window.navigator.userAgent) || "",
|
|
ie = (ua.indexOf("MSIE ") > 0) || (ua.indexOf("Trident/") > 0),
|
|
mobile = (navigator.userAgentData && navigator.userAgentData.mobile) || (window.navigator && window.navigator.maxTouchPoints) || "ontouchstart" in window, //not entirely correct but will currently do
|
|
iphone = /iphone/i.test(ua);
|
|
|
|
export {ie, mobile, iphone};
|