Kevin 29b9a0c50c clean && clean html base %!s(int64=4) %!d(string=hai) anos
..
index.js 29b9a0c50c clean && clean html base %!s(int64=4) %!d(string=hai) anos
license 29b9a0c50c clean && clean html base %!s(int64=4) %!d(string=hai) anos
package.json 29b9a0c50c clean && clean html base %!s(int64=4) %!d(string=hai) anos
readme.md 29b9a0c50c clean && clean html base %!s(int64=4) %!d(string=hai) anos

readme.md

decompress-response Build Status

Decompress a HTTP response if needed

Decompresses the response from http.request if it's gzipped or deflated, otherwise just passes it through.

Used by got.

Install

$ npm install decompress-response

Usage

const http = require('http');
const decompressResponse = require('decompress-response');

http.get('http://sindresorhus.com', response => {
	response = decompressResponse(response);
});

License

MIT © Sindre Sorhus