mirror of
https://github.com/xuxiaobo-bobo/boda_jsEnv.git
synced 2025-04-22 23:44:23 +08:00
13 lines
278 B
JavaScript
13 lines
278 B
JavaScript
/* jshint esversion: 6 */
|
|
"use strict";
|
|
|
|
module.exports = class NodeList extends Array {
|
|
constructor(a) {
|
|
super((a && a.length) || 0);
|
|
if (a) {
|
|
for (var idx in a) { this[idx] = a[idx]; }
|
|
}
|
|
}
|
|
item(i) { return this[i] || null; }
|
|
};
|