UNPKG

thelounge

Version:

The self-hosted Web IRC client

10 lines (6 loc) 190 B
"use strict"; exports.commands = ["disconnect"]; exports.input = function(network, chan, cmd, args) { var quitMessage = args[0] ? args.join(" ") : ""; network.irc.quit(quitMessage); };