hardlounge/src/plugins/inputs/whois.js

11 lines
187 B
JavaScript
Raw Normal View History

exports.commands = ["query", "whois"];
2016-03-06 09:24:56 +00:00
exports.input = function(network, chan, cmd, args) {
2014-09-13 21:29:45 +00:00
if (args.length !== 0) {
var irc = network.irc;
irc.whois(args[0]);
}
2016-03-06 09:24:56 +00:00
return true;
2014-09-13 21:29:45 +00:00
};