MCPcopy Index your code
hub / github.com/nodejs/node / makeSocketMethodProxy

Function makeSocketMethodProxy

lib/internal/tls/wrap.js:1293–1299  ·  view source on GitHub ↗
(name)

Source from the content-addressed store, hash-verified

1291
1292// Proxy TLSSocket handle methods
1293function makeSocketMethodProxy(name) {
1294 return function socketMethodProxy(...args) {
1295 if (this._handle)
1296 return ReflectApply(this._handle[name], this._handle, args);
1297 return null;
1298 };
1299}
1300
1301[
1302 'getCipher',

Callers 1

wrap.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…