Update http.js

This commit is contained in:
Namhyeon Go 2024-09-22 20:59:51 +09:00 committed by GitHub
parent 54e7bb77f6
commit b3bb9ba28c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1027,6 +1027,7 @@ var HTTPObject = function(engine) {
this.attachDebugger = function(_debugger) {
this.setProxy({
"enabled": true,
"provider": _debugger.toLowerCase()
});
this.isVerifySSL = false;
@ -1154,7 +1155,7 @@ exports.parseURL = parseURL;
exports.DEFAULT_USER_AGENT = DEFAULT_USER_AGENT;
exports.defaultUserAgent = DEFAULT_USER_AGENT; // compatible with the specific case
exports.VERSIONINFO = "HTTP client module (http.js) version 0.7.29";
exports.VERSIONINFO = "HTTP client module (http.js) version 0.7.30";
exports.AUTHOR = "abuse@catswords.net";
exports.global = global;
exports.require = global.require;