mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-21 01:02:59 +08:00
6503e55277
* refactor(utils-v2): migrate utils * refactor(utils-v2): migrate utils * refactor(utils-v2): migrate utils * refactor(utils): remove * refactor(utils): rename * refactor(utils): move EVENT_CODE to constants * refactor: remove generic
5 lines
139 B
TypeScript
5 lines
139 B
TypeScript
import { isClient } from '@vueuse/core'
|
|
|
|
export const isFirefox = (): boolean =>
|
|
isClient && /firefox/i.test(window.navigator.userAgent)
|