UNPKG
can-use-dom
Version:
latest (0.1.0)
0.1.0
Test if you can use dom in the current environment
github.com/akiran/can-use-dom
akiran/can-use-dom
can-use-dom
/
index.js
7 lines
(6 loc)
•
139 B
JavaScript
View Raw
1
2
3
4
5
6
7
var
canUseDOM = !!(
typeof
window
!==
'undefined'
&&
window
.
document
&&
window
.
document
.
createElement
);
module
.
exports
= canUseDOM;