abuse.ch/ts/helpers.ts

8 lines
284 B
TypeScript
Raw Normal View History

2023-07-28 12:13:16 +00:00
import * as plugins from './plugins.js';
export const findProxy = () => {
return process.env.HTTPS_PROXY || process.env.https_proxy || process.env.HTTP_PROXY || process.env.http_proxy
}
export const getAgent = () => {
return new plugins.httpsProxy.HttpsProxyAgent(findProxy());
}