codeql-action/node_modules/decompress-response
2020-06-22 17:20:03 +02:00
..
index.js replace jest with ava 2020-05-13 11:13:27 +01:00
license replace jest with ava 2020-05-13 11:13:27 +01:00
package.json revert node_modules from master 2020-06-22 17:20:03 +02:00
readme.md replace jest with ava 2020-05-13 11:13:27 +01: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