Files
boc/node_modules/http-proxy-middleware/dist/utils/logger-plugin.js
T

8 lines
193 B
JavaScript
Raw Normal View History

/**
* Get port from target
* Using proxyRes.req.agent.sockets to determine the target port
*/
export function getPort(sockets) {
return Object.keys(sockets || {})?.[0]?.split(':')[1];
}