diff --git a/.internal/createMathOperation.js b/.internal/createMathOperation.js index f40deb856..189ac90fe 100644 --- a/.internal/createMathOperation.js +++ b/.internal/createMathOperation.js @@ -14,7 +14,7 @@ function createMathOperation(operator, defaultValue) { if (value === undefined && other === undefined) { return defaultValue } - if (value != undefined && other === undefined){ + if (value != undefined && other === undefined) { return value } if (other !== undefined && value === undefined) {