@uswds/uswds
Version:
Open source UI components and visual style guide for U.S. government websites
12 lines (10 loc) • 335 B
JavaScript
// iOS detection from: http://stackoverflow.com/a/9039885/177710
function isIosDevice() {
return (
typeof navigator !== "undefined" &&
(navigator.userAgent.match(/(iPod|iPhone|iPad)/g) ||
(navigator.platform === "MacIntel" && navigator.maxTouchPoints > 1)) &&
!window.MSStream
);
}
module.exports = isIosDevice;