Warning: session_start(): Session cannot be started after headers have already been sent in /home/tvrreohg/public_html/manga.php on line 13
class Components {
/**
* Create a new Components instance.
*/
constructor() {
/** @type {Record} */
this.components = {};
}
/**
* Record a newly registered component.
*
* @param {string} name
* @param {any} component
*/
record(name, component) {
this.components[name] = component;
}
/**
* Retrieve a recorded component.
*
* @param {string} name
*/
get(name) {
return this.components[name];
}
/**
* Determine if the given component name has been registered.
* @param {string} name
*/
has(name) {
return name in this.components;
}
/**
* Retrieve all components.
*/
all() {
return this.components;
}
}
module.exports = Components;