We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6bfe5a commit f83eebaCopy full SHA for f83eeba
src/Node/HTTP/HTTPS.js
@@ -3,11 +3,11 @@
3
var https = require("https");
4
5
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
- };
+ return function (handleRequest) {
+ return function () {
+ return https.createServer(options, function (req, res) {
+ handleRequest(req)(res)();
+ });
12
};
+ };
13
0 commit comments