Skip to content

Instantly share code, notes, and snippets.

@unknowndomain
Created April 30, 2019 18:18
Show Gist options
  • Select an option

  • Save unknowndomain/685cc8a82a55e1e7e74603b4160e99a5 to your computer and use it in GitHub Desktop.

Select an option

Save unknowndomain/685cc8a82a55e1e7e74603b4160e99a5 to your computer and use it in GitHub Desktop.
var output = {};
if ( msg.tweet.text.match(/(love)/i) != null) {
output.increment = 1;
}
if ( msg.tweet.text.match(/(hate)/i) != null ) {
output.decrement = 1;
}
return output;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment