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.
54 lines • 1.19 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Plugin.
*/
class Plugin {
/**
* Constructor.
*
* @param mimeTypes Mime types.
* @param description Description.
* @param filename Filename.
* @param name Name.
*/
constructor(mimeTypes, description, filename, name) {
this.length = 0;
this.description = description;
this.filename = filename;
this.name = name;
for (let i = 0, max = mimeTypes.length; i < max; i++) {
this[i] = mimeTypes[i];
this[mimeTypes[i].type] = mimeTypes[i];
}
this.length = mimeTypes.length;
}
/**
* Item.
*
* @param index Number.
* @returns IMimeType.
*/
item(index) {
return this[index] || null;
}
/**
* NamedItem.
*
* @param name String.
* @returns IMimeType.
*/
namedItem(name) {
return this[name] || null;
}
/**
* Returns the object as a string.
*
* @returns String.
*/
toString() {
return '[object Plugin]';
}
}
exports.default = Plugin;
//# sourceMappingURL=Plugin.cjs.map
;