ladjs / superagent

Ajax for Node.js and browsers (JS HTTP client). Maintained for @forwardemail, @ladjs, @spamscanner, @breejs, @cabinjs, and @lassjs.
https://ladjs.github.io/superagent/
MIT License
16.58k stars 1.33k forks source link

Minor bug in Node response.toError #1631

Open ulisesbocchio opened 3 years ago

ulisesbocchio commented 3 years ago

bug in https://github.com/visionmedia/superagent/blob/3c9c0f7feef61328131ae43b06e628bce1c20c17/src/node/response.js#L91

const { method } = req;

should be

const { method } = this.request;