UNPKG

kubo-rpc-client

Version:
11 lines (8 loc) 231 B
import http from 'node:http' import https from 'node:https' export default (url?: URL): any => { if (url == null) { throw new Error('URL required') } return url.protocol.startsWith('https') ? https.Agent : http.Agent }