UNPKG

thelounge

Version:

The self-hosted Web IRC client

12 lines (8 loc) 197 B
"use strict"; exports.commands = ["kill"]; exports.input = function ({irc}, chan, cmd, args) { if (args.length !== 0) { irc.raw("KILL", args[0], args.slice(1).join(" ")); } return true; };