I have an http request where I want some response headers that are, for one reason or another, unavailable to me from the response object but visible in the chrome dev tools 
But the response object from the javascript request api only contains some of these headers.
{ // response.headers cache-control: "no-cache, private", content-type: "application/json" } Surely, there must be a way to get things like x-ratelimit-limit as part of the response. If it's information sent to the browser, why can't it be available in a javascript http request api?