mirror of
https://github.com/itdoginfo/podkop.git
synced 2025-12-06 11:36:50 +03:00
8 lines
180 B
TypeScript
8 lines
180 B
TypeScript
export function splitProxyString(str: string) {
|
|
return str
|
|
.split('\n')
|
|
.map((line) => line.trim())
|
|
.filter((line) => !line.startsWith('//'))
|
|
.filter(Boolean);
|
|
}
|