Update http.js

This commit is contained in:
Namhyeon Go 2022-05-03 13:13:52 +09:00 committed by GitHub
parent 01d9115505
commit 180f037d9f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -647,6 +647,10 @@ var HTTPObject = function(engine) {
return this;
};
this.setIsFollowRedirect = function(flag) {
this.isFollowRedirect = flag;
};
this.setSaveTo = function(filename) {
this.saveTo = filename;
};