BoG/scripts/debug.js

9 lines
195 B
JavaScript
Raw Normal View History

2020-08-07 17:49:09 +02:00
const util = require('util');
module.exports = (robot) => {
2020-09-06 03:28:37 +02:00
robot.hear(/debug user$/i, function (msg) {
2020-08-07 17:49:09 +02:00
username = msg.envelope
msg.reply("```" + util.inspect(username) + "```")
});
}