We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a97968 commit fbc26c9Copy full SHA for fbc26c9
2 files changed
src/chrome/content/code/IOUtil.js
@@ -248,7 +248,7 @@ const IOUtil = {
248
if ((hasCookies = !!cookie)) cookieNames = cookie.split(/\s*;\s*/).map(this._splitName);
249
250
let parms = qs.split("&");
251
- for (j = parms.length; j-- > 0;) {
+ for (var j = parms.length; j-- > 0;) {
252
let nv = parms[j].split("=");
253
let name = nv[0];
254
if (this._anonRx.test(name) || cookie && cookieNames.indexOf(name) > -1)
src/components/ssl-observatory.js
@@ -315,7 +315,7 @@ SSLObservatory.prototype = {
315
}
316
317
var hexArr = [];
318
- for (i in h){
+ for (var i in h){
319
hexArr.push(toHexString(h.charCodeAt(i)));
320
321
return hexArr.join("").toUpperCase();
0 commit comments