From e575f41a192a9cf53edd97f38057713542d41ace Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Sat, 21 Sep 2024 14:14:43 +0900 Subject: [PATCH] Update http.js --- lib/http.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/http.js b/lib/http.js index c58ba24..9e3aee6 100644 --- a/lib/http.js +++ b/lib/http.js @@ -218,6 +218,8 @@ var HTTPObject = function(engine) { this.proxy.port = proxy['port'] || this.proxy.port; this.proxy.credential = proxy['credential'] || this.proxy.credential; } + + console.info("Please check documentation:", availableProxy.documentation); } } @@ -228,6 +230,7 @@ var HTTPObject = function(engine) { this.proxy[k] = proxy[k]; } + return this; };