Skip to content

Check if a JavaScript environment has a DOM

License

Notifications You must be signed in to change notification settings

sindresorhus/has-dom

Repository files navigation

has-dom

Check if a JavaScript environment has a DOM

Install

$ npm install has-dom

Usage

import hasDom from 'has-dom';

// In Node.js
hasDom();
//=> false

// In the browser
hasDom();
//=> true