mirror of
https://git.mirrors.martin98.com/https://github.com/sub-store-org/Sub-Store.git
synced 2025-04-20 12:49:33 +08:00
7 lines
92 B
JavaScript
7 lines
92 B
JavaScript
/**
|
|
* 过滤 UDP 节点
|
|
*/
|
|
function filter(proxies) {
|
|
return proxies.map(p => p.udp);
|
|
}
|