(options)
| 77 | } |
| 78 | |
| 79 | function duplexPair(options) { |
| 80 | const side0 = new DuplexSide(options); |
| 81 | const side1 = new DuplexSide(options); |
| 82 | side0[kInitOtherSide](side1); |
| 83 | side1[kInitOtherSide](side0); |
| 84 | return [side0, side1]; |
| 85 | } |
| 86 | module.exports = duplexPair; |
no outgoing calls
no test coverage detected
searching dependent graphs…