You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The response object in Node's http module (an instance of http.IncomingMessage) exposes the response headers via response.headers (and notresponse.getHeader()). This module does the opposite - http-browserify's response object has response.getHeader() (and notresponse.headers).
The response object should be changed to match Node core's http module by adding .headers and removing .getHeader().