3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-24 04:49:25 +01:00
dbot/modules/js.js
Luke Slater f5ec74c549 js
2011-10-12 16:43:09 +01:00

21 lines
388 B
JavaScript

var js = function(dbot) {
var dbot = dbot;
var commands = {
'~js': function(data, params) {
var q = data.message.valMatch(/^~q ([\d\w\s]*)/, 2);
dbot.say(data.channel, eval(q));
}
};
return {
'onLoad': function() {
return commands;
}
};
};
exports.fetch = function(dbot) {
return js(dbot);
};