UNPKG

168 BJavaScriptView Raw
1import { isChrome } from "./is-chrome.js";
2export const isSafari = () => typeof navigator !== "undefined" &&
3 /Safari/.test(navigator.userAgent) &&
4 !isChrome();