Skip to content

Instantly share code, notes, and snippets.

@elizabethsiegle
Last active June 2, 2016 09:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elizabethsiegle/893b705df6c981a29e0df3602bd8ad22 to your computer and use it in GitHub Desktop.
Save elizabethsiegle/893b705df6c981a29e0df3602bd8ad22 to your computer and use it in GitHub Desktop.
function processData(data) {
if (!data) return;
if (splashWords.some(function(v) { return data.text.toLowerCase().indexOf(v) !== -1; })) {
numSplashWords +=1;
totalNumTweets+=1;
publish2();
console.log(data);
}
bestFans();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment