1// U+200B is the codepoint for zero-width-space.
2function FindProxyForURL(url, host) {
3  return "PROXY foo.com\u200B";
4}
5