Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
const net = require('net');
const server = net.createServer(function () {});
server.listen(process.argv[2]);
process.exit(0);