(options)
| 5 | module.exports = EngineClient |
| 6 | |
| 7 | function EngineClient(options) { |
| 8 | options = options || {} |
| 9 | |
| 10 | if (typeof options === "string") { |
| 11 | options = { path: options } |
| 12 | } |
| 13 | |
| 14 | var socket = new EngineSocket(options) |
| 15 | return EngineStream(socket) |
| 16 | } |
nothing calls this directly
no test coverage detected