Bug 1411368 - Automatically fix no-multi-spaces issues raised when using ESLint 4. r=mossop

This commit is contained in:
Mark Banner 2017-10-31 14:05:42 -07:00 коммит произвёл Mike Cooper
Родитель 5975ed1fff
Коммит cb3ebd69ea
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 74AB8817639D69C1
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -10,7 +10,7 @@ Cu.importGlobalProperties(["crypto", "TextEncoder"]);
this.EXPORTED_SYMBOLS = ["Sampling"];
const hashBits = 48;
const hashLength = hashBits / 4; // each hexadecimal digit represents 4 bits
const hashLength = hashBits / 4; // each hexadecimal digit represents 4 bits
const hashMultiplier = Math.pow(2, hashBits) - 1;
this.Sampling = {