UNPKG

@equinor/eds-utils

Version:

Utility functions and hooks for the Equinor Design System

10 lines (8 loc) 233 B
/** * Detects if the current browser is Firefox * @returns true if Firefox, false otherwise */ const isFirefox = () => { return typeof window !== 'undefined' && navigator.userAgent.includes('Firefox'); }; export { isFirefox };