ref: ba66a58b7772b1d28f90f103ee0f97415e20ef52
dir: /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;