Fix errors reported by the semi-spacing ESLint rule

http://eslint.org/docs/rules/semi-spacing
This commit is contained in:
Jonas Jenwald 2016-12-10 22:15:23 +01:00
parent aae27e76bb
commit 551eb263e3

View File

@ -557,7 +557,7 @@ function arraysToBytes(arr) {
}
var resultLength = 0;
var i, ii = arr.length;
var item, itemLength ;
var item, itemLength;
for (i = 0; i < ii; i++) {
item = arr[i];
itemLength = arrayByteLength(item);