ES2015 module for type checking DOM NodeLists
npm install is-dom-node-listA simple and fast way to get started is to include this script on your page:
``html`
This will create the global variable isDomNodeList.
`bash`
npm install is-dom-node-list
#### CommonJS
`js`
const isDomNodeList = require('is-dom-node-list')
#### ES2015
`js`
import isDomNodeList from 'is-dom-node-list'
`js
const nodeList = document.querySelectorAll('.cookies')
isDomNodeList(nodeList)
// => true
const nodeArray = Array.prototype.slice.call(nodeList)
isDomNodeList(nodeArray)
// => false
``