2.0.0 • Published 5 years ago

is-dom-detached v2.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

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