UNPKG
ahooks-v2
Version:
latest (2.10.15)
2.10.15
2.10.13
react hooks library
github.com/alibaba/hooks
alibaba/hooks
ahooks-v2
/
es
/
utils
/
canUseDom.js
3 lines
•
135 B
JavaScript
View Raw
1
2
3
export
default
function
canUseDom
(
) {
return
!!(
typeof
window
!==
'undefined'
&&
window
.
document
&&
window
.
document
.
createElement
); }