From 76204f5f4746cedfe182273a4789330ab1283893 Mon Sep 17 00:00:00 2001 From: n1474335 Date: Fri, 5 May 2017 16:03:25 +0000 Subject: [PATCH] Fixed lint errors --- src/core/operations/PublicKey.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/operations/PublicKey.js b/src/core/operations/PublicKey.js index 918535e9..237c968a 100755 --- a/src/core/operations/PublicKey.js +++ b/src/core/operations/PublicKey.js @@ -124,10 +124,10 @@ const PublicKey = { } // Signature fields - var breakoutSig = false; + let breakoutSig = false; try { breakoutSig = r.ASN1HEX.dump(certSig).indexOf("SEQUENCE") === 0; - } catch(err) { + } catch (err) { // Error processing signature, output without further breakout }