(url)
| 76 | }); |
| 77 | |
| 78 | const tlsConnectionHandler = async (url) => { |
| 79 | const { hostname, port } = parseTarget(url); |
| 80 | return handshake({ hostname, port }); |
| 81 | }; |
| 82 | |
| 83 | export const handler = middleware(tlsConnectionHandler); |
| 84 | export default handler; |
nothing calls this directly
no test coverage detected