mirror of
https://github.com/sammwyy/MikuMikuBeam.git
synced 2025-06-29 18:21:13 +00:00
10 lines
245 B
JavaScript
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));
|
|
}
|