Update http.js

This commit is contained in:
Namhyeon Go 2022-05-03 13:19:38 +09:00 committed by GitHub
parent 825b250635
commit b524ca81f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -709,6 +709,6 @@ exports.get = function(url, data, headers) {
return (new HTTPObject()).setHeaders(headers).setParameters(data).setUseCache(false).get(url).responseBody;
};
exports.VERSIONINFO = "HTTP Lib (http.js) version 0.6";
exports.VERSIONINFO = "HTTP Lib (http.js) version 0.7";
exports.global = global;
exports.require = global.require;