Browse Source

Fixed lint errors

n1474335 8 years ago
parent
commit
76204f5f47
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/core/operations/PublicKey.js

+ 2 - 2
src/core/operations/PublicKey.js

@@ -124,10 +124,10 @@ const PublicKey = {
         }
         }
 
 
         // Signature fields
         // Signature fields
-        var breakoutSig = false;
+        let breakoutSig = false;
         try {
         try {
             breakoutSig = r.ASN1HEX.dump(certSig).indexOf("SEQUENCE") === 0;
             breakoutSig = r.ASN1HEX.dump(certSig).indexOf("SEQUENCE") === 0;
-        } catch(err) {
+        } catch (err) {
             // Error processing signature, output without further breakout
             // Error processing signature, output without further breakout
         }
         }