ref: fb1e925b765b0f39437eec9df8938ebf8670056a
dir: /domino-lib/NodeList.js/
"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;