(function () { try { const ua = navigator.userAgent.toLowerCase(); // Skip in case it's not Apple device. const isMacOS = ua.match(/(mac\sos\sx)\s?([\w\s\.]*)/i) !== null; if (!isMacOS) { return; } // Skip in case it's not Safari or Safari version is lower than 13. const match = ua.match(/version\/([\w\.]+).+?(mobile\s?safari|safari)/i); if (!match || match[2] !== 'safari' || parseInt(match[1].split('.')[0], 10) < 13) { return; } // Redirect in case it's a mobile device. if (typeof window.ontouchstart !== 'undefined') { document.location.href = 'https://m.mytrannycams.com/en/list?forcedesktop=1'; } } catch (e) { } })();