* Creates a new TCP or IPC server * @param {{ * allowHalfOpen?: boolean; * pauseOnConnect?: boolean; * }} [options] * @param {Function} [connectionListener] * @returns {Server}
(options, connectionListener)
| 225 | */ |
| 226 | |
| 227 | function createServer(options, connectionListener) { |
| 228 | return new Server(options, connectionListener); |
| 229 | } |
| 230 | |
| 231 | |
| 232 | // Target API: |
no outgoing calls
no test coverage detected
searching dependent graphs…