@yandex/ui
Version:
Yandex UI components
11 lines (10 loc) • 376 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isIOS = void 0;
function isIOS() {
return (typeof window !== 'undefined' &&
window.navigator &&
(/iP(ad|hone|od)/.test(window.navigator.platform) ||
(window.navigator.platform === 'MacIntel' && window.navigator.maxTouchPoints > 1)));
}
exports.isIOS = isIOS;