From d840ad4ee9c64381259baf211236088aaf99fccd Mon Sep 17 00:00:00 2001 From: Alex Austin Date: Wed, 21 Sep 2016 16:06:53 -0700 Subject: [PATCH] fix: linting --- www.es6/branch.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www.es6/branch.js b/www.es6/branch.js index 86de7988..458d91ee 100644 --- a/www.es6/branch.js +++ b/www.es6/branch.js @@ -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 ]); };