UNPKG
@darwish/utils-core
Version:
latest (0.0.4)
0.0.4
0.0.3
0.0.2
0.0.1
@darwish/utils-core
/
esm
/
is
/
isBrowser.js
9 lines
(8 loc)
•
191 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
/** * *
@returns
判断是否是浏览器环境 */
var
isBrowser = !!(
typeof
window
!==
'undefined'
&&
window
.
document
&&
window
.
document
.
createElement
);
export
default
isBrowser;