shithub: mycel

ref: 8b6f2304278271517909d2a699a8e62b50c5968e
dir: /domino/domino-lib/NodeList.es6.js/

View raw version
/* 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; }
};