REFACTOR: value assigned to precision here is unused (#9673)

This commit is contained in:
Joffrey JAFFEUX 2020-05-07 16:34:14 +02:00 committed by GitHub
parent a2109bd9b2
commit d5fe1279bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -202,7 +202,6 @@ I18n.toNumber = function(number, options) {
formattedNumber;
number = parts[0];
precision = parts[1];
while (number.length > 0) {
buffer.unshift(number.substr(Math.max(0, number.length - 3), 3));