Open kornelski opened 7 years ago
It's possible to make it work properly via subclassing — #44 — since the .agent() method will invoke superagent.Request.
.agent()
superagent.Request
A quick'n'dirty way of making it sort-of work (except cookies):
superagent.agent = function() { return this; }
It's possible to make it work properly via subclassing — #44 — since the
.agent()
method will invokesuperagent.Request
.A quick'n'dirty way of making it sort-of work (except cookies):