liusuyi
2023-04-24 4737f1e038743ced243c9e52423404d9034d6107
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
41
42
43
44
45
46
47
48
49
50
51
'use strict';
const {PassThrough} = require('stream');
 
module.exports = options => {
    options = Object.assign({}, options);
 
    const {array} = options;
    let {encoding} = options;
    const buffer = encoding === 'buffer';
    let objectMode = false;
 
    if (array) {
        objectMode = !(encoding || buffer);
    } else {
        encoding = encoding || 'utf8';
    }
 
    if (buffer) {
        encoding = null;
    }
 
    let len = 0;
    const ret = [];
    const stream = new PassThrough({objectMode});
 
    if (encoding) {
        stream.setEncoding(encoding);
    }
 
    stream.on('data', chunk => {
        ret.push(chunk);
 
        if (objectMode) {
            len = ret.length;
        } else {
            len += chunk.length;
        }
    });
 
    stream.getBufferedValue = () => {
        if (array) {
            return ret;
        }
 
        return buffer ? Buffer.concat(ret, len) : ret.join('');
    };
 
    stream.getBufferedLength = () => len;
 
    return stream;
};