diff --git a/README.md b/README.md index 38cbb22550..612e4a9449 100644 --- a/README.md +++ b/README.md @@ -354,7 +354,12 @@ The response for a request contains the following information. headers: {}, // `config` is the config that was provided to `axios` for the request - config: {} + config: {}, + + // `request` is the request that generated this response + // It is the last ClientRequest instance in node.js (in redirects) + // and an XMLHttpRequest instance the browser + request: {} } ```