shithub: opossum

ref: af7eaeb14a83747ac7b5bdb5cfd3f0812d8219a3
dir: opossum/domino-lib/NodeList.js

View raw version
"use strict";

var NodeList;

try {
    // Attempt to use ES6-style Array subclass if possible.
    NodeList = require('./NodeList.es6.js');
} catch (e) {
    // No support for subclassing array, return an actual Array object.
    NodeList = require('./NodeList.es5.js');
}

module.exports = NodeList;