We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Does this exist? It would be very useful for the concept of "unloading" a plugin.
The text was updated successfully, but these errors were encountered:
i believe client is, in some manner, an extension of EventEmitter.
client
http://nodejs.org/api/events.html#events_emitter_removelistener_event_listener
Sorry, something went wrong.
damianb is right - see irc.js source code:
util.inherits(Client, process.EventEmitter);
-> so this issue is a won't fix one
if you design correctly and store your listeners properly, you can just pass the callback again to removeListener and it's unloaded.
or just use eventemitter.once
I suggest closing as well.
No branches or pull requests
Does this exist? It would be very useful for the concept of "unloading" a plugin.
The text was updated successfully, but these errors were encountered: