From ecdfff408fda451e208ffee3ba823d6fadf62d4e Mon Sep 17 00:00:00 2001 From: Adam Roderick Date: Thu, 14 Apr 2016 16:21:39 -0500 Subject: [PATCH] Update ntlm-authentication.js missing bracket --- examples/http/ntlm-authentication.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/http/ntlm-authentication.js b/examples/http/ntlm-authentication.js index 5634ded4b..294680132 100644 --- a/examples/http/ntlm-authentication.js +++ b/examples/http/ntlm-authentication.js @@ -10,7 +10,7 @@ var agent = new Agent({ keepAliveTimeout: 30000 // free socket keepalive for 30 seconds }); -var proxy = httpProxy.createProxy({ target: 'http://whatever.com', agent: agent); +var proxy = httpProxy.createProxy({ target: 'http://whatever.com', agent: agent }); // // Modify headers of the request before it gets sent