You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
"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;
|