UNPKG

kara

Version:

A third generation EX-400 android

20 lines (14 loc) 351 B
var Ping = module.exports = function Ping(bot) { function hook(msg) { if (/^ping\b/.test(msg.body)) { onPing(msg) } } function onPing(msg) { bot.reply(msg, "pong"); } this.enable = function enable() { bot.on("msg:direct", hook); }; this.disable = function disable() { bot.removeListener("msg:direct", hook); }; };