9 lines
237 B
JavaScript
Raw Normal View History

2026-05-31 13:21:13 +02:00
'use strict';
const stream = require('stream');
const tls = require('tls');
// Really awesome hack.
const JSStreamSocket = (new tls.TLSSocket(new stream.PassThrough()))._handle._parentWrap.constructor;
module.exports = JSStreamSocket;