UNPKG
@mingo_zh/data-room-ui
Version:
latest (2.9.0)
2.9.0
2.8.9
2.8.8
2.8.0
2.6.0
2.5.0
2.4.0
2.3.2
2.3.0
2.2.0
2.1.0
2.1.0-20240808001
2.1.0-20240805001
自定义大屏
github.com/gcpaas/DataRoom
@mingo_zh/data-room-ui
/
packages
/
js
/
utils
/
userAgent.js
9 lines
(8 loc)
•
189 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
// 是否是火狐浏览器
export
const
isFirefox
= (
) => {
const
userAgent = navigator.
userAgent
if
(userAgent.
indexOf
(
'Firefox'
) > -
1
) {
return
true
}
return
false
}