刘琳琳 97c35fdf0d 航汇HHArome小程序容器演示 2 месяцев назад
..
index.js 97c35fdf0d 航汇HHArome小程序容器演示 2 месяцев назад
license 97c35fdf0d 航汇HHArome小程序容器演示 2 месяцев назад
package.json 97c35fdf0d 航汇HHArome小程序容器演示 2 месяцев назад
readme.md 97c35fdf0d 航汇HHArome小程序容器演示 2 месяцев назад

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