UNPKG

hongluan-ui

Version:
12 lines (9 loc) 372 B
import { isClient } from '@vueuse/core'; export { isClient, isIOS } from '@vueuse/core'; const isFirefox = () => isClient && /firefox/i.test(window.navigator.userAgent); function supportTouch() { const inBrowser = typeof window !== "undefined"; return inBrowser && "ontouchstart" in window; } export { isFirefox, supportTouch }; //# sourceMappingURL=browser.mjs.map