3 lines
135 B
JavaScript
Raw Normal View History

2020-05-19 11:43:42 +03:00
export default function canUseDom() {
return !!(typeof window !== 'undefined' && window.document && window.document.createElement);
}