Apply no-var eslint rule

This commit is contained in:
Yuya Ochiai
2018-09-03 21:41:04 +09:00
parent d69bf3aa5e
commit d73f98825e
16 changed files with 92 additions and 89 deletions

View File

@@ -56,7 +56,7 @@ CertificateStore.prototype.isExisting = function isExisting(targetURL) {
};
CertificateStore.prototype.isTrusted = function isTrusted(targetURL, certificate) {
var host = getHost(targetURL);
const host = getHost(targetURL);
if (!this.isExisting(targetURL)) {
return false;
}