(host, port, localAddress)
| 361 | }); |
| 362 | } |
| 363 | function toOptions(host, port, localAddress) { |
| 364 | if (typeof host === "string") { |
| 365 | return { |
| 366 | host, |
| 367 | port, |
| 368 | localAddress |
| 369 | }; |
| 370 | } |
| 371 | return host; |
| 372 | } |
| 373 | function mergeOptions(target) { |
| 374 | for (var i = 1, len = arguments.length; i < len; ++i) { |
| 375 | var overrides = arguments[i]; |
no outgoing calls
no test coverage detected