ref: 20c9b3b3afc19bfc4cb218e7b0bd891f529f5a4e
dir: /cmd/gojafs/domino/domino-lib/NodeList.es6.js/
/* jshint esversion: 6 */
"use strict";
module.exports = class NodeList extends Array {
constructor(a) {
super((a && a.length) || 0);
if (a) {
for (var idx in a) { this[idx] = a[idx]; }
}
}
item(i) { return this[i] || null; }
};