Skip to content

Commit f83eeba

Browse files
author
Connor Prussin
committed
Fix indentation
1 parent e6bfe5a commit f83eeba

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/Node/HTTP/HTTPS.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
var https = require("https");
44

55
exports.createServerImpl = function (options) {
6-
return function (handleRequest) {
7-
return function () {
8-
return https.createServer(options, function (req, res) {
9-
handleRequest(req)(res)();
10-
});
11-
};
6+
return function (handleRequest) {
7+
return function () {
8+
return https.createServer(options, function (req, res) {
9+
handleRequest(req)(res)();
10+
});
1211
};
12+
};
1313
};

0 commit comments

Comments
 (0)