UNPKG
@silk-hq/components
Version:
latest (0.10.1)
0.10.1
0.10.0
0.9.12
0.9.11
0.9.10
0.9.9
0.9.8
0.9.7
0.9.6
0.9.5
0.9.3
0.9.2
0.9.1
0.9.0
0.8.15
0.8.14
0.8.13
0.8.12
0.8.11
0.8.10
0.8.9
0.8.8
0.8.7
0.8.6
0.8.5
0.8.4
0.8.3
0.8.2
0.8.1
0.8.0
UI Components by Silk
silkhq.co
@silk-hq/components
/
attributions
/
reach-ui
/
can-use-dom.ts
10 lines
(9 loc)
•
196 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
/* eslint-disable */
// @ts-nocheck
export
function
canUseDOM
(
) {
return
!!(
typeof
window
!==
"undefined"
&&
window
.
document
&&
window
.
document
.
createElement
); }