1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-14 23:12:28 +02:00

minor code review: it makes no difference, I just prefer no indent there

This commit is contained in:
gorhill 2017-05-20 16:32:42 -04:00
parent be9d76f43d
commit fd03683045
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -99,10 +99,9 @@
if ( i === l ) { break; }
v = vtc[url.charCodeAt(i++)];
if ( v === 0 ) { break; }
if ( n !== 8 ) {
th = th * 64 + v;
n += 1;
}
if ( n === 8 ) { continue; }
th = th * 64 + v;
n += 1;
}
tokens[j++] = th;
tokens[j++] = ti;