芝麻web文件管理V1.00
编辑当前文件:/home/rejoandoctor/public_html/node_modules/laravel-mix/src/components/Components.js
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;