WUT_Computer_Science/EGUI/lab3/api/node_modules/decompress-response
2022-06-15 05:26:01 +02:00
..
index.js feat: finish api 2022-06-15 05:26:01 +02:00
license feat: finish api 2022-06-15 05:26:01 +02:00
package.json feat: finish api 2022-06-15 05:26:01 +02:00
readme.md feat: finish api 2022-06-15 05:26:01 +02:00

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