archive
/
givemoneyto.me
Archived
1
Fork 0

Remove single 0 padding

This commit is contained in:
Jake Howard 2019-06-29 18:12:55 +01:00
parent 2899e98e3c
commit 841ca7af44
Signed by: jake
GPG Key ID: 57AFB45680EDD477
1 changed files with 0 additions and 1 deletions

View File

@ -69,7 +69,6 @@ function writeTemplate(
writeTemplate(template, value.toString() + '0', context);
}
if (isPrecision(value, 0)) {
writeTemplate(template, value.toString() + '.0', context);
writeTemplate(template, value.toString() + '.00', context);
}
}