/ src / lib / utils / is-safari.ts
is-safari.ts
 1  import { browser } from '$app/environment';
 2  
 3  export default function isSafari() {
 4    if (!browser) return false;
 5  
 6    return Boolean(
 7      navigator.vendor &&
 8        navigator.vendor.indexOf('Apple') > -1 &&
 9        navigator.userAgent &&
10        navigator.userAgent.indexOf('CriOS') == -1 &&
11        navigator.userAgent.indexOf('FxiOS') == -1,
12    );
13  }