React's ExecutionEnvironment module extracted as ES6 functions. Based on the ExecutionEnviroment module licensed under the MIT license by Facebook, Inc
canUseDOM
- Checks if the DOM is available to access and use
canUseWorkers
- Checks if Web Workers are available for use
canUseEventListeners
- Checks if Event Listeners are available for use
canUseViewport
- Checks if there is a viewport available
npm i exenv-es6 --save
import { canUseDOM } from "exenv-es6";
if (canUseDOM()) {
// do something that requires the dom
}