Initial commit
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
"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;
|
||||
Reference in New Issue
Block a user