Misc-small-projects/dodsorfas/Skypebot/helper.js
Daniel Løvbrøtte Olsen 75e5069dd1 Srs, another variant.
Hopefully that covers all of them
2016-08-21 22:10:46 +02:00

9 lines
267 B
JavaScript

exports.send = function(session, texta) {
texta.forEach(function(text) {
session.send(text);
})
}
exports.regex = function(command) {
return RegExp ("^(<at id=\"\\S+\">(@?Dodsorbot|@28:b8381d78-ab09-496c-b382-860a98fa1dc3)<\\/at>\\s)?(" + command + ")", "i");
}