(name)
| 1291 | |
| 1292 | // Proxy TLSSocket handle methods |
| 1293 | function 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', |
no outgoing calls
no test coverage detected
searching dependent graphs…