UNPKG

exenv-es6

Version:

React's ExecutionEnvironment module recreated as ES6 functions

7 lines (6 loc) 190 B
/** * Checks if the DOM is available to access and use */ export function canUseDOM() { return !!(typeof window !== "undefined" && window.document && window.document.createElement); }