README
dom-array
Turn any* input into array (of DOM nodes).
Input formats:
windowdocumentElementNodeListArrayStringundefinednull
Usage
var $ = require('dom-array');
$(); // []
$('title'); // [title]
$('title', document.body); // []
$('<title>'); // [title]
Installation
$ npm install dom-array
Test
$ npm test
Browser support
IE9+
