Path : /var/www/html/phkaymedia/vendor/livewire/livewire/js/ |
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
Current File : /var/www/html/phkaymedia/vendor/livewire/livewire/js/DirectiveManager.js |
import MessageBus from "./MessageBus" export default { directives: new MessageBus, register(name, callback) { if (this.has(name)) { throw `Livewire: Directive already registered: [${name}]` } this.directives.register(name, callback) }, call(name, el, directive, component) { this.directives.call(name, el, directive, component) }, has(name) { return this.directives.has(name) }, }