happy-dom
Version:
Happy DOM is a JavaScript implementation of a web browser without its graphical user interface. It includes many web standards from WHATWG DOM and HTML.
53 lines • 1.04 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
/**
* PluginArray.
*/
class PluginArray {
/**
* Constructor.
*
* @param plugins Plugins.
*/
constructor(plugins) {
for (let i = 0, max = plugins.length; i < max; i++) {
this[i] = plugins[i];
this[plugins[i].name] = plugins[i];
}
this.length = plugins.length;
}
/**
* Returns an item.
*
* @param index Index.
* @returns Plugin.
*/
item(index) {
return this[index] || null;
}
/**
* Returns an item.
*
* @param name Name.
* @returns Plugin.
*/
namedItem(name) {
return this[name] || null;
}
/**
* Refreshes the list.
*/
refresh() {
// Do nothing
}
/**
* Returns the object as a string.
*
* @returns String.
*/
toString() {
return '[object PluginArray]';
}
}
exports.default = PluginArray;
//# sourceMappingURL=PluginArray.cjs.map
;