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

4 lines
100 B
JavaScript

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