Lint all the JavaScripts.

This commit is contained in:
isaacs
2012-02-18 15:01:35 -08:00
parent 31721da4b1
commit 0cdf85e28d
61 changed files with 749 additions and 542 deletions

View File

@@ -55,12 +55,12 @@ function createConnection(port, host, options) {
options.port = port;
options.host = host;
return tls.connect(options);
};
}
function Agent(options) {
http.Agent.call(this, options);
this.createConnection = createConnection;
};
}
inherits(Agent, http.Agent);
Agent.prototype.defaultPort = 443;