Files

3 lines
135 B
JavaScript
Raw Permalink Normal View History

export default function canUseDom() {
return !!(typeof window !== 'undefined' && window.document && window.document.createElement);
}