mirror of
https://github.com/tvytlx/ai-agent-deep-dive.git
synced 2026-04-12 12:04:49 +08:00
Add extracted source directory and README navigation
This commit is contained in:
15
extracted-source/node_modules/@mixmark-io/domino/lib/NodeList.es5.js
generated
vendored
Normal file
15
extracted-source/node_modules/@mixmark-io/domino/lib/NodeList.es5.js
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
"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;
|
||||
Reference in New Issue
Block a user