gx
chenyc
2025-06-12 7b72ac13a83764a662159d4a49b7fffb90476ecb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
'use strict';
const {PassThrough: PassThroughStream} = require('stream');
const zlib = require('zlib');
const mimicResponse = require('mimic-response');
 
const decompressResponse = response => {
    const contentEncoding = (response.headers['content-encoding'] || '').toLowerCase();
 
    if (!['gzip', 'deflate', 'br'].includes(contentEncoding)) {
        return response;
    }
 
    const isBrotli = contentEncoding === 'br';
    if (isBrotli && typeof zlib.createBrotliDecompress !== 'function') {
        return response;
    }
 
    const decompress = isBrotli ? zlib.createBrotliDecompress() : zlib.createUnzip();
    const stream = new PassThroughStream();
 
    mimicResponse(response, stream);
 
    decompress.on('error', error => {
        // Ignore empty response
        if (error.code === 'Z_BUF_ERROR') {
            stream.end();
            return;
        }
 
        stream.emit('error', error);
    });
 
    response.pipe(decompress).pipe(stream);
 
    return stream;
};
 
module.exports = decompressResponse;
// TODO: remove this in the next major version
module.exports.default = decompressResponse;