* * @param {String} address * @param {Object} options * @param {String} [dc]
(address, options, dc)
| 601 | * @param {String} [dc] |
| 602 | */ |
| 603 | function createHost(address, options, dc) { |
| 604 | const h = new Host(address, 4, options); |
| 605 | h.datacenter = dc || 'dc1'; |
| 606 | return h; |
| 607 | } |
| 608 | |
| 609 | /** |
| 610 | * @param {Host} h |
no outgoing calls
no test coverage detected