diff --git a/.internal/createMathOperation.js b/.internal/createMathOperation.js index 189ac90fe..b893b5cda 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) {