Browse Source

Fix errors reported by the `semi-spacing` ESLint rule

http://eslint.org/docs/rules/semi-spacing
Jonas Jenwald 8 years ago
parent
commit
551eb263e3
  1. 2
      src/shared/util.js

2
src/shared/util.js

@ -557,7 +557,7 @@ function arraysToBytes(arr) { @@ -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);

Loading…
Cancel
Save