UNPKG

cob-uswds

Version:

Customized USWDS UI components and visual style guide based on City of Boston Patterns Library

12 lines (10 loc) 335 B
// 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;