shithub: mycel

ref: 53e30e39a6156b3182cff49af4e9375216e9df77
dir: /cmd/gojafs/domino/domino-lib/NodeList.es5.js/

View raw version
"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;