fix(lint): Space infix operator (?)

This commit is contained in:
Sabe Jones
2015-11-18 15:18:44 -05:00
parent ed443b490a
commit 72ea9426dd

View File

@@ -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));
}