From c3b3c71b0a6532e61c30ff5fdc3d7106d67e24e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Lipi=C5=84ski?= Date: Wed, 8 Nov 2017 22:45:41 +0100 Subject: [PATCH] Tiny style correction in `createMathOperation`. --- .internal/createMathOperation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {