UNPKG
yg-data-room-ui
Version:
latest (1.0.2-2024041110-Alpha)
1.0.2-2024041110-Alpha
1.0.1-2024041109-Alpha
1.0.0-2024041022-Alpha
自定义大屏
yg-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
}