Skip to content

Commit

Permalink
fix: linting
Browse files Browse the repository at this point in the history
  • Loading branch information
aaustin committed Sep 21, 2016
1 parent ea447c1 commit d840ad4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions www.es6/branch.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,13 +93,13 @@ Branch.prototype.setMixpanelToken = function(token) {
*
* @return (Promise)
*/
Branch.prototype.setDebug = function (isEnabled) {
Branch.prototype.setDebug = function(isEnabled) {

isEnabled = (typeof isEnabled !== 'boolean') ? false : isEnabled;

this.debugMode = isEnabled;

return execute('setDebug', [isEnabled]);
return execute('setDebug', [ isEnabled ]);

};

Expand Down

0 comments on commit d840ad4

Please sign in to comment.