is-dom-node-list

ES2015 module for type checking DOM NodeLists

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
is-dom-node-list
201.2.15 years ago5 years agoMinified + gzip package size for is-dom-node-list in KB

Readme

is-dom-node-list
Build status Coverage Version 0.3KB min+gzip MIT License

Installation

Browser

A simple and fast way to get started is to include this script on your page:
<script src="https://unpkg.com/is-dom-node-list"></script>

This will create the global variable isDomNodeList.

Module

npm install is-dom-node-list

CommonJS

const isDomNodeList = require('is-dom-node-list')

ES2015

import isDomNodeList from 'is-dom-node-list'

Usage

const nodeList = document.querySelectorAll('.cookies')
isDomNodeList(nodeList)
// => true

const nodeArray = Array.prototype.slice.call(nodeList)
isDomNodeList(nodeArray)
// => false