Use strict equality (===)
authorJack Allnutt <jack@allnutt.eu>
Thu, 12 Jun 2014 15:34:32 +0000 (16:34 +0100)
committerJack Allnutt <jack@allnutt.eu>
Thu, 12 Jun 2014 15:34:32 +0000 (16:34 +0100)
server/irc/connection.js

index d4b54784481ec23aba521b066d2e6216f57b1262..c72858e956e27990476fc3608a113a4b421eabce 100644 (file)
@@ -460,7 +460,7 @@ IrcConnection.prototype.setEncoding = function (encoding) {
         //This test is done to check if this encoding also supports
         //the ASCII charset required by the IRC protocols
         //(Avoid the use of base64 or incompatible encodings)
-        if (encoded_test == "TEST") {
+        if (encoded_test === "TEST") {
             this.encoding = encoding;
             return true;
         }
@@ -580,7 +580,7 @@ function onUserKick(event){
 var rawSocketConnect = function(socket) {
     // Make note of the port numbers for any identd lookups
     // Nodejs < 0.9.6 has no socket.localPort so check this first
-    if (typeof socket.localPort != 'undefined') {
+    if (typeof socket.localPort !== 'undefined') {
         this.identd_port_pair = socket.localPort.toString() + '_' + socket.remotePort.toString();
         global.clients.port_pairs[this.identd_port_pair] = this;
     }