I have an app, and I\'d like to redirect the users to different pages based on where they are navigating from.
If navigating from web clip, do not redirect. If navig
this regex works for me, clean and simple
const isIOSSafari = !!window.navigator.userAgent.match(/Version/[\d.]+.*Safari/);