Update http.js

This commit is contained in:
Namhyeon Go 2022-01-18 00:47:16 +09:00 committed by GitHub
parent 344eb14f02
commit 9e97f72cda
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
};