Style: Removed trailing whitespace

This commit is contained in:
Franklin van de Meent
2017-09-16 13:47:44 +02:00
committed by GitHub
parent 6507ca791d
commit b3cc600ff0

View File

@@ -127,7 +127,7 @@
let result;
let missing;
let i;
// rounding
if (deci) {
amount = Math.pow (10, deci || 1);
@@ -149,7 +149,7 @@
} else {
missing = deci - result.split ('.')[1].length;
}
if (missing) {
for (i = missing; i > 0; i--) {
result += '0';