UNPKG
myapp-dataroom
Version:
latest (2.0.1-2024011601-Alpha)
2.0.1-2024011601-Alpha
自定义大屏
github.com/gcpaas/DataRoom
myapp-dataroom
/
packages
/
js
/
utils
/
userAgent.js
9 lines
(8 loc)
•
181 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
}