thelounge/src/plugins/inputs/raw.js
2019-08-05 20:16:39 +03:00

12 lines
199 B
JavaScript

"use strict";
exports.commands = ["raw", "send", "quote"];
exports.input = function({irc}, chan, cmd, args) {
if (args.length !== 0) {
irc.connection.write(args.join(" "));
}
return true;
};