UNPKG

454 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3/**
4 * Returns true if and only if the user is on a iOS device.
5 * Used to determine whether iOS-specific behavior should be applied.
6 */
7exports.isIOS = function () {
8 if (!window || !window.navigator || !window.navigator.userAgent) {
9 return false;
10 }
11 return /iPad|iPhone|iPod/i.test(window.navigator.userAgent);
12};
13//# sourceMappingURL=mobileDetector.js.map
\No newline at end of file