Permalink
Browse files

lint

  • Loading branch information...
1 parent 73dd09f commit 3cfe0a34fceabc1bcf72afafcc5f96a1aeaec2a1 @mannynotfound committed Jun 12, 2016
Showing with 3 additions and 3 deletions.
  1. +3 −3 app.js
View
6 app.js
@@ -6,7 +6,7 @@ function DeleteTrump(api) {
}
DeleteTrump.prototype = {
- startStream:function () {
+ startStream: function() {
var self = this;
this.client.stream('statuses/filter', {
'follow': '25073877'
@@ -33,7 +33,7 @@ DeleteTrump.prototype = {
});
},
- resurrect:function () {
+ resurrect: function() {
this.stream = null
var self = this;
console.log('RESURRECTING STREAM');
@@ -42,7 +42,7 @@ DeleteTrump.prototype = {
}, 1000 * 60 * 5 ); // wait 5 minutes
},
- handleError:function (err) {
+ handleError: function(err) {
console.log(err);
process.exit();
}

0 comments on commit 3cfe0a3

Please sign in to comment.