mirror of
https://github.com/LukeHagar/arbiter.git
synced 2025-12-11 04:19:25 +00:00
11 lines
290 B
JavaScript
11 lines
290 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.getPort = getPort;
|
|
/**
|
|
* Get port from target
|
|
* Using proxyRes.req.agent.sockets to determine the target port
|
|
*/
|
|
function getPort(sockets) {
|
|
return Object.keys(sockets || {})?.[0]?.split(':')[1];
|
|
}
|