robert2206 8ad867f7a5 commit inicial vor 8 Jahren
..
index.js 8ad867f7a5 commit inicial vor 8 Jahren
license 8ad867f7a5 commit inicial vor 8 Jahren
package.json 8ad867f7a5 commit inicial vor 8 Jahren
readme.md 8ad867f7a5 commit inicial vor 8 Jahren

readme.md

unzip-response Build Status

Unzip a HTTP response if needed

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

Install

$ npm install --save unzip-response

Usage

const http = require('http');
const unzipResponse = require('unzip-response');

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

License

MIT © Sindre Sorhus