ref: 39c7730e28dfbd5ee1b8a27ddf90bc7be493c169
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;