Skip to content

Instantly share code, notes, and snippets.

@nna774
Created January 28, 2015 19:07
Show Gist options
  • Save nna774/145ac9f24901b5d6a9a6 to your computer and use it in GitHub Desktop.
Save nna774/145ac9f24901b5d6a9a6 to your computer and use it in GitHub Desktop.
function FindProxyForURL(url, host) {
if (url.substring(0, 5) == "http:") {
return "PROXY sazanami.nna774.net:8080";
} else {
return "DIRECT";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment