Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura
christian 4571a14169 android fix 3 yıl önce
..
index.js android fix 3 yıl önce
license android fix 3 yıl önce
package.json android fix 3 yıl önce
readme.md android fix 3 yıl önce

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