UNPKG

@hitachivantara/uikit-react-core

Version:

Core React components for the NEXT Design System.

9 lines (8 loc) 242 B
import { detect } from "detect-browser"; const isBrowser = (browsers) => { const browser = detect(); return browser && (Array.isArray(browsers) ? browsers.indexOf(browser.name) > 0 : browsers === browser.name); }; export { isBrowser };