Update http.js

This commit is contained in:
Namhyeon Go 2022-01-17 19:02:42 +09:00 committed by GitHub
parent e7ebb7fac1
commit 0d1d1d37f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -95,6 +95,11 @@ var HTTPObject = function(engine) {
}
return this;
};
this.setProxy = function(proxy) {
this.proxy = proxy;
return this;
};
this.setMethod = function(method) {
this.method = method;