react-toolbox/components/utils/is-browser.js

4 lines
99 B
JavaScript

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