From 72ea9426dd54956175aab7ecee3729791c2a3ac7 Mon Sep 17 00:00:00 2001 From: Sabe Jones Date: Wed, 18 Nov 2015 15:18:44 -0500 Subject: [PATCH] fix(lint): Space infix operator (?) --- common/script/statHelpers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/script/statHelpers.js b/common/script/statHelpers.js index 09a6a9b223..9f92d506ba 100644 --- a/common/script/statHelpers.js +++ b/common/script/statHelpers.js @@ -39,6 +39,6 @@ export function toNextLevel (lvl) { {halfway} (optional) the point at which the graph starts bending */ -export function diminishingReturns (bonus, max, halfway = max/2) { +export function diminishingReturns (bonus, max, halfway = max / 2) { return max * (bonus / (bonus + halfway)); }