mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 06:18:35 +02:00
Reverse var to let change (#541)
* Reverse var to let change * Review feedback Co-authored-by: Rob Wu <rob@robwu.nl> --------- Co-authored-by: Rob Wu <rob@robwu.nl>
This commit is contained in:
@@ -1,6 +1,9 @@
|
||||
"use strict";
|
||||
|
||||
let rootCertStats = {};
|
||||
// Note: declared with "var" because popup.js references this global variable.
|
||||
// If this were to be declared with "const" or "let", then the variable would
|
||||
// still be available to this file, but not to popup.js.
|
||||
var rootCertStats = {};
|
||||
|
||||
/*
|
||||
On an onHeadersReceived event, if there was a successful TLS connection
|
||||
|
||||
Reference in New Issue
Block a user