tls: pass linting
authorFedor Indutny <fedor.indutny@gmail.com>
Fri, 20 Jul 2012 18:07:16 +0000 (22:07 +0400)
committerFedor Indutny <fedor.indutny@gmail.com>
Fri, 20 Jul 2012 18:07:16 +0000 (22:07 +0400)
lib/tls.js

index 3095bd4..55acac7 100644 (file)
@@ -97,12 +97,11 @@ function checkServerIdentity(host, cert) {
     // escape all characters that have special meaning in regexps
     // (i.e. '.', '[', '{', '*', and others)
     var re = host.replace(
-      /\*([a-z0-9\\-_\.])|[\.,\-\\\^\$+?*\[\]\(\):!\|{}]/g,
-      function(all, sub) {
-        if (sub) return '[a-z0-9\\-_]*' + (sub === '-' ? '\\-' : sub);
-        return '\\' + all;
-      }
-    );
+        /\*([a-z0-9\\-_\.])|[\.,\-\\\^\$+?*\[\]\(\):!\|{}]/g,
+        function(all, sub) {
+          if (sub) return '[a-z0-9\\-_]*' + (sub === '-' ? '\\-' : sub);
+          return '\\' + all;
+        });
 
     return new RegExp('^' + re + '$', 'i');
   }
@@ -163,7 +162,7 @@ function checkServerIdentity(host, cert) {
   }
 
   return valid;
-};
+}
 exports.checkServerIdentity = checkServerIdentity;