Skip to content

Instantly share code, notes, and snippets.

@timblair
Created January 26, 2015 10:35
Show Gist options
  • Save timblair/709a9dbc08043ae3eb20 to your computer and use it in GitHub Desktop.
Save timblair/709a9dbc08043ae3eb20 to your computer and use it in GitHub Desktop.
youre.js
module.exports = function (robot) {
robot.hear(/ (?:is )(\w+ ?){1,6}/i, function (msg) {
if (Math.random() < 0.001) {
var match = msg.match[0].trim().replace(/^is /,"");
msg.send("You're " + match);
}
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment