mirror of
https://github.com/nodejs/node.git
synced 2025-05-05 13:43:55 +00:00

Manually fix issues that eslint --fix couldn't do automatically. PR-URL: https://github.com/nodejs/node/pull/10685 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io>
41 lines
757 B
JavaScript
41 lines
757 B
JavaScript
'use strict';
|
|
// see https://github.com/joyent/node/issues/3257
|
|
|
|
const common = require('../common');
|
|
const http = require('http');
|
|
|
|
const server = http.createServer(function(req, res) {
|
|
req.resume();
|
|
req.once('end', function() {
|
|
res.writeHead(200);
|
|
res.end();
|
|
server.close();
|
|
});
|
|
});
|
|
|
|
common.refreshTmpDir();
|
|
|
|
server.listen(common.PIPE, function() {
|
|
const req = http.request({
|
|
socketPath: common.PIPE,
|
|
headers: {'Content-Length': '1'},
|
|
method: 'POST',
|
|
path: '/'
|
|
});
|
|
|
|
req.write('.');
|
|
|
|
sched(function() { req.end(); }, 5);
|
|
});
|
|
|
|
// schedule a callback after `ticks` event loop ticks
|
|
function sched(cb, ticks) {
|
|
function fn() {
|
|
if (--ticks)
|
|
setImmediate(fn);
|
|
else
|
|
cb();
|
|
}
|
|
setImmediate(fn);
|
|
}
|