4 lines
73 B
JavaScript
4 lines
73 B
JavaScript
function FindProxyForURL(url, host) {
|
|
return "direct".toUpperCase();
|
|
}
|