thelounge/src/plugins/inputs/raw.js
2018-02-19 18:30:00 +02:00

12 lines
176 B
JavaScript

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