Bakhtina Sofya b84cb877be 1st comm | 2 주 전 | |
---|---|---|
.. | ||
index.js | 2 주 전 | |
license | 2 주 전 | |
package.json | 2 주 전 | |
readme.md | 2 주 전 |
Unzip a HTTP response if needed
Unzips the response from http.request
if it's gzipped/deflated, otherwise just passes it through.
$ npm install --save unzip-response
const http = require('http');
const unzipResponse = require('unzip-response');
http.get('http://sindresorhus.com', res => {
res = unzipResponse(res);
});
MIT © Sindre Sorhus