dbot/modules/js.js
Luke Slater 0be481f505 js
2011-10-12 16:46:18 +01:00

21 lines
392 B
JavaScript

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