Browse Source

minor fix

bwhitn 7 years ago
parent
commit
2b47631f4d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/core/operations/Arithmetic.js

+ 1 - 1
src/core/operations/Arithmetic.js

@@ -57,7 +57,7 @@ const Arithmetic = {
         if (num === null) {
             return "";
         }
-        return num;
+        return num.toString();
     },