From 9e97f72cda5626ed752eb224c088a7d185e7e108 Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Tue, 18 Jan 2022 00:47:16 +0900 Subject: [PATCH] Update http.js --- lib/http.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/http.js b/lib/http.js index 702430f..749540a 100644 --- a/lib/http.js +++ b/lib/http.js @@ -535,8 +535,6 @@ var HTTPObject = function(engine) { var Rpos = str.indexOf('}', Lpos + 1); var s1 = [], s2 = null, s3, s4; - console.log("Before evaluated:", str); - while (Lpos > -1 && Rpos > -1) { s1 = str.substring(Lpos + 1, Rpos).split(' '); @@ -566,8 +564,6 @@ var HTTPObject = function(engine) { Rpos = str.indexOf('}', Lpos + 1); } - console.log("After evaluated:", str); - return str; };