0
0
mirror of https://github.com/sammwyy/MikuMikuBeam.git synced 2025-06-29 18:21:13 +00:00
MikuMikuBeam/server/utils/proxyUtils.js
2025-01-20 01:08:36 -03:00

10 lines
245 B
JavaScript

const METHODS = {
http: ["http", "https"],
tcp: ["socks4", "socks5"],
udp: ["socks4", "socks5"],
};
export function filterProxies(proxies, method) {
return proxies.filter((proxy) => METHODS[method].includes(proxy.protocol));
}