is-dom-detached

Determine if a Node does not exist within a DOM tree.

Usage no npm install needed!

<script type="module">
  import isDomDetached from 'https://cdn.skypack.dev/is-dom-detached';
</script>

README

is-dom-detached NPM Version File Size Build Status Coverage Status Dependency Monitor

Determine if a Node does not exist within a DOM tree.

Installation

Node.js >= 10 is required. To install, type this at the command line:

npm install is-dom-detached

Importing

ES Module:

import isDetachedNode from 'is-dom-detached';

CommonJS Module:

const isDetachedNode = require('is-dom-detached');

Usage

const div = document.createElement('div');
isDetachedNode(div); //-> true

document.body.appendChild(div);
isDetachedNode(div); //-> false