ref: ea391fd0eead3ce2ccbfe6594dfc9cf1c6e02b92
dir: /domino/domino-lib/NodeList.es5.js/
"use strict"; // No support for subclassing array, return an actual Array object. function item(i) { /* jshint validthis: true */ return this[i] || null; } function NodeList(a) { if (!a) a = []; a.item = item; return a; } module.exports = NodeList;