🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-15 01:06:19 | PHP 8.1.34
📂
/ (Root)
/
opt
/
alt
/
alt-nodejs8
/
root
/
usr
/
lib
/
node_modules
/
npm
/
node_modules.bundled
/
unzip-response
📍 /opt/alt/alt-nodejs8/root/usr/lib/node_modules/npm/node_modules.bundled/unzip-response
🔄 Refresh
✏️
Editing: readme.md
Read Only
# unzip-response [](https://travis-ci.org/sindresorhus/unzip-response) > Unzip a HTTP response if needed Unzips the response from [`http.request`](https://nodejs.org/api/http.html#http_http_request_options_callback) if it's gzipped/deflated, otherwise just passes it through. ## Install ``` $ npm install --save unzip-response ``` ## Usage ```js const http = require('http'); const unzipResponse = require('unzip-response'); http.get('http://sindresorhus.com', res => { res = unzipResponse(res); }); ``` ## License MIT © [Sindre Sorhus](https://sindresorhus.com)
💾 Save Changes
❌ Cancel